summaryrefslogtreecommitdiff
path: root/packages/astro/test/fixtures/rewrite-runtime-error/astro.config.mjs
diff options
context:
space:
mode:
Diffstat (limited to 'packages/astro/test/fixtures/rewrite-runtime-error/astro.config.mjs')
-rw-r--r--packages/astro/test/fixtures/rewrite-runtime-error/astro.config.mjs9
1 files changed, 9 insertions, 0 deletions
diff --git a/packages/astro/test/fixtures/rewrite-runtime-error/astro.config.mjs b/packages/astro/test/fixtures/rewrite-runtime-error/astro.config.mjs
new file mode 100644
index 000000000..af13ef19b
--- /dev/null
+++ b/packages/astro/test/fixtures/rewrite-runtime-error/astro.config.mjs
@@ -0,0 +1,9 @@
+import { defineConfig } from 'astro/config';
+
+// https://astro.build/config
+export default defineConfig({
+ experimental: {
+ rewriting: true
+ },
+ site: "https://example.com"
+});