summaryrefslogtreecommitdiff
path: root/packages/astro/test/fixtures/vue-jsx/astro.config.mjs
diff options
context:
space:
mode:
authorGravatar Bjorn Lu <bjornlu.dev@gmail.com> 2022-09-29 11:25:45 +0800
committerGravatar GitHub <noreply@github.com> 2022-09-29 11:25:45 +0800
commitfd9d323a68c0f0cbb3b019e0a05e2c33450f3d33 (patch)
treeb42267841c4f0af26b41172336149c421e1c5321 /packages/astro/test/fixtures/vue-jsx/astro.config.mjs
parent24bad5a0ad6e3b64d9209aecffd8d0e9181135ad (diff)
downloadastro-fd9d323a68c0f0cbb3b019e0a05e2c33450f3d33.tar.gz
astro-fd9d323a68c0f0cbb3b019e0a05e2c33450f3d33.tar.zst
astro-fd9d323a68c0f0cbb3b019e0a05e2c33450f3d33.zip
Support Vue JSX (#4897)
Co-authored-by: Dan Jutan <danjutan@gmail.com>
Diffstat (limited to 'packages/astro/test/fixtures/vue-jsx/astro.config.mjs')
-rw-r--r--packages/astro/test/fixtures/vue-jsx/astro.config.mjs7
1 files changed, 7 insertions, 0 deletions
diff --git a/packages/astro/test/fixtures/vue-jsx/astro.config.mjs b/packages/astro/test/fixtures/vue-jsx/astro.config.mjs
new file mode 100644
index 000000000..ffd9016c2
--- /dev/null
+++ b/packages/astro/test/fixtures/vue-jsx/astro.config.mjs
@@ -0,0 +1,7 @@
+import { defineConfig } from 'astro/config';
+import vue from '@astrojs/vue';
+
+// https://astro.build/config
+export default defineConfig({
+ integrations: [vue({ jsx: true })],
+}); \ No newline at end of file