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.mjs5
1 files changed, 3 insertions, 2 deletions
diff --git a/examples/framework-vue/astro.config.mjs b/examples/framework-vue/astro.config.mjs
index 563e8b8fc..f30130a95 100644
--- a/examples/framework-vue/astro.config.mjs
+++ b/examples/framework-vue/astro.config.mjs
@@ -1,7 +1,8 @@
import { defineConfig } from 'astro/config';
+import vue from '@astrojs/vue';
// https://astro.build/config
export default defineConfig({
- // Enable the Vue renderer to support Vue components.
- renderers: ['@astrojs/renderer-vue'],
+ // Enable Vue to support Vue components.
+ integrations: [vue()],
});