fix astro watch dist

pull/5615/head
Daniel 2024-09-01 19:28:10 +05:30
parent f34dc849fb
commit 79703897f0
1 changed files with 8 additions and 1 deletions

View File

@ -15,5 +15,12 @@ export default defineConfig({
integrations: [mdx()],
srcDir: './src/html',
cacheDir: './dist/pages',
outDir: './dist/pages'
outDir: './dist/pages',
vite: {
server: {
watch: {
ignored: ['!**/dist/**'],
}
}
}
})