Webpack watch not working on Webstorm on Windows?

梦想与她 提交于 2019-12-02 14:09:33

seems Webpack watch doesn't work if the file is not saved directly. Please try turning 'Safe write' option ( Settings | Appearance & Behavior | System Settings | Use "safe write" (save changes to temporary file first)) off

Also make sure you use Node's path construction instead of slashes. Example:

entry: {
     'MyPackage': path.join(__dirname, 'modules', 'PkgEntry.js'),
...

instead of:

entry: {
     'MyPackage': '\\modules\\PkgEntry.js'),
...

Had the same issue today. And accepted answer didn't help me.

Check this page https://confluence.jetbrains.com/display/IDEADEV/Inotify+Watches+Limit and try to increase your Inotify Watches Limit. Helped me.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!