mirror of
https://github.com/withastro/astro.git
synced 2025-01-06 22:10:10 -05:00
8 lines
171 B
JavaScript
8 lines
171 B
JavaScript
import vue from '@astrojs/vue';
|
|
import { defineConfig } from 'astro/config';
|
|
|
|
export default defineConfig({
|
|
integrations: [vue({
|
|
appEntrypoint: './src/vue.ts'
|
|
})]
|
|
})
|