Don't auto reload during testing
This commit is contained in:
parent
eb376151f2
commit
c930a3bbf1
1 changed files with 8 additions and 1 deletions
|
@ -1,4 +1,11 @@
|
||||||
import { defineConfig } from 'astro/config';
|
import { defineConfig } from 'astro/config';
|
||||||
import vue from '@astrojs/vue';
|
import vue from '@astrojs/vue';
|
||||||
|
|
||||||
export default defineConfig({integrations: [vue()]});
|
export default defineConfig({
|
||||||
|
vite: {
|
||||||
|
server: {
|
||||||
|
hmr: false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
integrations: [vue()]
|
||||||
|
});
|
Loading…
Reference in a new issue