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