summaryrefslogtreecommitdiff
path: root/examples/non-html-pages/astro.config.mjs
diff options
context:
space:
mode:
authorGravatar Joel Kuzmarski <leoj3n@gmail.com> 2022-02-25 10:18:48 -0600
committerGravatar GitHub <noreply@github.com> 2022-02-25 08:18:48 -0800
commitc46db4ecbd1dfbe68679167b27e7f1d92e27f5fb (patch)
treeb81ee82540b5ee6c5ac14e9b9a3cbe8c796a0858 /examples/non-html-pages/astro.config.mjs
parent7680fd511882282be70785b42a62627876319eda (diff)
downloadastro-c46db4ecbd1dfbe68679167b27e7f1d92e27f5fb.tar.gz
astro-c46db4ecbd1dfbe68679167b27e7f1d92e27f5fb.tar.zst
astro-c46db4ecbd1dfbe68679167b27e7f1d92e27f5fb.zip
Add Non-HTML Pages example (#2637)
* Add Non-HTML Pages example * Rename dir non-html-example to non-html-pages * Update name to non-html-pages in package.json
Diffstat (limited to 'examples/non-html-pages/astro.config.mjs')
-rw-r--r--examples/non-html-pages/astro.config.mjs8
1 files changed, 8 insertions, 0 deletions
diff --git a/examples/non-html-pages/astro.config.mjs b/examples/non-html-pages/astro.config.mjs
new file mode 100644
index 000000000..67c95c240
--- /dev/null
+++ b/examples/non-html-pages/astro.config.mjs
@@ -0,0 +1,8 @@
+// Full Astro Configuration API Documentation:
+// https://docs.astro.build/reference/configuration-reference
+
+// @ts-check
+export default /** @type {import('astro').AstroUserConfig} */ ({
+ // Comment out "renderers: []" to enable Astro's default component support.
+ renderers: [],
+});