diff options
author | 2022-09-29 11:25:45 +0800 | |
---|---|---|
committer | 2022-09-29 11:25:45 +0800 | |
commit | fd9d323a68c0f0cbb3b019e0a05e2c33450f3d33 (patch) | |
tree | b42267841c4f0af26b41172336149c421e1c5321 /packages/astro/test/fixtures/vue-jsx/astro.config.mjs | |
parent | 24bad5a0ad6e3b64d9209aecffd8d0e9181135ad (diff) | |
download | astro-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.mjs | 7 |
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 |