blob: f30130a95318b71d4a2de5dadd8c975264179f5f (
plain) (
blame)
1
2
3
4
5
6
7
8
|
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()],
});
|