Skip to content

Commit 7e9d0c1

Browse files
authored
fix (#2392): hmr issue and watch for chokidar v3 (#2436)
* fix: watch for chokidar v3 * chore: remove comments
1 parent 017aa69 commit 7e9d0c1

File tree

1 file changed

+6
-2
lines changed
  • packages/@vuepress/core/lib/node/dev

1 file changed

+6
-2
lines changed

packages/@vuepress/core/lib/node/dev/index.js

+6-2
Original file line numberDiff line numberDiff line change
@@ -207,8 +207,12 @@ module.exports = class DevProcess extends EventEmitter {
207207
publicPath: this.context.base,
208208
watchOptions: {
209209
ignored: [
210-
/node_modules/,
211-
`!${this.context.tempPath}/**`
210+
(x) => {
211+
if (x.includes(this.context.tempPath)) {
212+
return false
213+
}
214+
return /node_modules/.test(x)
215+
}
212216
]
213217
},
214218
historyApiFallback: {

0 commit comments

Comments
 (0)