diff options
Diffstat (limited to 'examples/starter/astro.config.mjs')
-rw-r--r-- | examples/starter/astro.config.mjs | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/examples/starter/astro.config.mjs b/examples/starter/astro.config.mjs index a5fc95e58..f8ad313bc 100644 --- a/examples/starter/astro.config.mjs +++ b/examples/starter/astro.config.mjs @@ -1,13 +1,7 @@ -// Full Astro Configuration API Documentation: -// https://docs.astro.build/reference/configuration-reference +import { defineConfig } from 'astro/config'; -// @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} */ ({ +// https://astro.build/config +export default defineConfig({ // Set "renderers" to "[]" to disable all default, builtin component support. renderers: [], }); |