aboutsummaryrefslogtreecommitdiff
path: root/vite.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'vite.config.js')
-rw-r--r--vite.config.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/vite.config.js b/vite.config.js
index 524c1d6..25119dd 100644
--- a/vite.config.js
+++ b/vite.config.js
@@ -6,7 +6,10 @@ export default defineConfig({
server: {
proxy: {
'/data': 'http://localhost:8000',
- }
+ },
+ watch: {
+ ignored: ['**/imgsForReview/*', '**/imgsReviewed/*', '**/img/*']
+ },
},
//server: {open: true} //open browser when dev server starts
})