@yoamigo.com/core 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/plugin.js +3 -2
- package/package.json +1 -1
package/dist/plugin.js
CHANGED
|
@@ -86,10 +86,11 @@ if (import.meta.hot) {
|
|
|
86
86
|
strictPort: false,
|
|
87
87
|
// Allow Vite to find next available port
|
|
88
88
|
watch: {
|
|
89
|
-
// Prevent Vite from watching node_modules
|
|
89
|
+
// Prevent Vite from watching node_modules, pnpm store, and dist
|
|
90
90
|
// Critical when node_modules contains symlinks to pnpm store (bundled deps)
|
|
91
91
|
// Without this, Vite exceeds inotify file watcher limit (ENOSPC error)
|
|
92
|
-
ignored
|
|
92
|
+
// dist is ignored to prevent HMR triggers when build outputs files
|
|
93
|
+
ignored: ["**/node_modules/**", "**/.pnpm-store/**", "**/dist/**"]
|
|
93
94
|
},
|
|
94
95
|
hmr: {
|
|
95
96
|
// When behind a proxy (builder worker), HMR needs to connect through the proxy
|