Zorn/test/astro.config.mjs

14 lines
255 B
JavaScript
Raw Normal View History

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