1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00

add the watch ignored setting (#636)

This commit is contained in:
Naoyuki Kanezawa 2017-01-04 03:05:04 +09:00 committed by Guillermo Rauch
parent 6d6ef1ca9f
commit 0a3313d1b9

View file

@ -135,6 +135,12 @@ export default class HotReloader {
noInfo: true,
quiet: true,
clientLogLevel: 'warning',
watchOptions: {
ignored: [
/(^|[/\\])\../, // .dotfiles
/node_modules/
]
},
...windowsSettings
})