Zorn/test/astro.config.mjs

14 lines
255 B
JavaScript
Raw Normal View History

2024-08-16 15:20:41 -05:00
import { defineConfig } from 'astro/config';
import vue from '@astrojs/vue';
2024-11-01 20:38:16 -05:00
export default defineConfig({
vite: {
server: {
hmr: false
}
},
2024-11-05 18:21:05 -05:00
integrations: [vue()],
devToolbar: {
enabled: false
}
2024-11-01 20:38:16 -05:00
});