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