Zorn/test/astro.config.mjs

11 lines
207 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
}
},
integrations: [vue()]
});