mirror of
https://github.com/withastro/astro.git
synced 2024-12-30 22:03:56 -05:00
15 lines
277 B
JavaScript
15 lines
277 B
JavaScript
|
import { defineConfig } from 'astro/config';
|
||
|
import vue from '@astrojs/vue';
|
||
|
import ViteSvgLoader from 'vite-svg-loader'
|
||
|
|
||
|
export default defineConfig({
|
||
|
integrations: [vue({
|
||
|
appEntrypoint: '/src/pages/_app'
|
||
|
})],
|
||
|
vite: {
|
||
|
plugins: [
|
||
|
ViteSvgLoader(),
|
||
|
],
|
||
|
},
|
||
|
})
|