2021-09-01 02:09:16 +01:00
|
|
|
// Full Astro Configuration API Documentation:
|
|
|
|
// https://docs.astro.build/reference/configuration-reference
|
|
|
|
|
|
|
|
// @type-check enabled!
|
|
|
|
// VSCode and other TypeScript-enabled text editors will provide auto-completion,
|
|
|
|
// helpful tooltips, and warnings if your exported object is invalid.
|
|
|
|
// You can disable this by removing "@ts-check" and `@type` comments below.
|
|
|
|
|
|
|
|
// @ts-check
|
|
|
|
export default /** @type {import('astro').AstroUserConfig} */ ({
|
2021-03-19 17:17:38 -04:00
|
|
|
projectRoot: '.',
|
2021-06-01 09:57:12 -06:00
|
|
|
pages: './src/pages',
|
2021-04-26 16:54:20 -05:00
|
|
|
dist: './dist',
|
2021-03-30 09:24:26 -04:00
|
|
|
public: './public',
|
2021-09-01 02:09:16 +01:00
|
|
|
// Set "renderers" to "[]" to disable all default, builtin component support.
|
2021-06-02 11:35:28 -05:00
|
|
|
renderers: [
|
|
|
|
'@astrojs/renderer-vue',
|
|
|
|
'@astrojs/renderer-svelte',
|
2021-07-20 04:07:49 +00:00
|
|
|
'@astrojs/renderer-preact',
|
|
|
|
],
|
2021-09-01 02:09:16 +01:00
|
|
|
});
|