2022-10-13 19:15:57 +00:00
|
|
|
import { defineConfig } from 'astro/config';
|
|
|
|
import vue from '@astrojs/vue';
|
2023-09-06 13:01:01 +00:00
|
|
|
import ViteSvgLoader from 'vite-svg-loader'
|
2022-10-13 19:15:57 +00:00
|
|
|
|
|
|
|
export default defineConfig({
|
|
|
|
integrations: [vue({
|
|
|
|
appEntrypoint: '/src/pages/_app'
|
2023-09-06 13:01:01 +00:00
|
|
|
})],
|
|
|
|
vite: {
|
|
|
|
plugins: [
|
|
|
|
ViteSvgLoader(),
|
|
|
|
],
|
|
|
|
},
|
2022-10-13 19:15:57 +00:00
|
|
|
})
|