aboutsummaryrefslogtreecommitdiff
path: root/packages/astro/e2e/fixtures/errors/astro.config.mjs
diff options
context:
space:
mode:
Diffstat (limited to 'packages/astro/e2e/fixtures/errors/astro.config.mjs')
-rw-r--r--packages/astro/e2e/fixtures/errors/astro.config.mjs17
1 files changed, 17 insertions, 0 deletions
diff --git a/packages/astro/e2e/fixtures/errors/astro.config.mjs b/packages/astro/e2e/fixtures/errors/astro.config.mjs
new file mode 100644
index 000000000..47f4bb327
--- /dev/null
+++ b/packages/astro/e2e/fixtures/errors/astro.config.mjs
@@ -0,0 +1,17 @@
+import preact from '@astrojs/preact';
+import react from '@astrojs/react';
+import solid from '@astrojs/solid-js';
+import svelte from '@astrojs/svelte';
+import vue from '@astrojs/vue';
+import { defineConfig } from 'astro/config';
+
+// https://astro.build/config
+export default defineConfig({
+ integrations: [
+ react({ include: ['**/react/*'] }),
+ preact({ include: ['**/preact/*'] }),
+ solid({ include: ['**/solid/*'] }),
+ svelte(),
+ vue(),
+ ],
+});