Browse Source

Fix vite memory leak due to composer local dev package

Bubka 1 year ago
parent
commit
94541ac1e6
1 changed files with 5 additions and 0 deletions
  1. 5 0
      vite.config.js

+ 5 - 0
vite.config.js

@@ -78,4 +78,9 @@ export default defineConfig({
             },
         },
     },
+    server: {
+        watch: {
+            followSymlinks: false,
+        }
+    }
 });