aboutsummaryrefslogtreecommitdiff
path: root/examples/framework-vue/astro.config.mjs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/framework-vue/astro.config.mjs')
-rw-r--r--examples/framework-vue/astro.config.mjs9
1 files changed, 9 insertions, 0 deletions
diff --git a/examples/framework-vue/astro.config.mjs b/examples/framework-vue/astro.config.mjs
new file mode 100644
index 000000000..5afe92269
--- /dev/null
+++ b/examples/framework-vue/astro.config.mjs
@@ -0,0 +1,9 @@
+// @ts-check
+import { defineConfig } from 'astro/config';
+import vue from '@astrojs/vue';
+
+// https://astro.build/config
+export default defineConfig({
+ // Enable Vue to support Vue components.
+ integrations: [vue()],
+});