summaryrefslogtreecommitdiff
path: root/examples/minimal
diff options
context:
space:
mode:
Diffstat (limited to 'examples/minimal')
-rw-r--r--examples/minimal/astro.config.mjs14
1 files changed, 12 insertions, 2 deletions
diff --git a/examples/minimal/astro.config.mjs b/examples/minimal/astro.config.mjs
index fcc415092..b6397b312 100644
--- a/examples/minimal/astro.config.mjs
+++ b/examples/minimal/astro.config.mjs
@@ -1,3 +1,13 @@
-export default {
+// 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} */ ({
+ // Set "renderers" to "[]" to disable all default, builtin component support.
renderers: [],
-};
+});