Webpack watch not working on Webstorm on Windows?

后端 未结 3 1262
迷失自我
迷失自我 2021-01-30 00:43

So basically I have a project using Webpack, if I build using Webpack -w, editing the file with another editor will trigger the watch; however if I edit the file us

3条回答
  •  伪装坚强ぢ
    2021-01-30 01:30

    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'),
    ...
    

提交回复
热议问题