diff --git a/vue.config.js b/vue.config.js
index cb113109ed113f5698a2c7aa27bc209101a6d8a5..da48aa6695fc41df676c270eae59026fd29ae64c 100644
--- a/vue.config.js
+++ b/vue.config.js
@@ -1,9 +1,12 @@
 module.exports = {
-    devServer: {
-        proxy: 'http://localhost:7777/',
+  devServer: {
+    proxy: "http://localhost:7777/",
+    watchOptions: {
+      ignored: /\.#|node_modules|~$/,
     },
-    configureWebpack: {
-        devtool: 'source-map',
-    },
-    publicPath: "/web/",
-}
\ No newline at end of file
+  },
+  configureWebpack: {
+    devtool: "source-map",
+  },
+  publicPath: "/web/",
+};