We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The text was updated successfully, but these errors were encountered:
应该是判断分隔符的时候用了sysPath.sep 写happypack/loader的时候用了/ 所以。。。('/'!='\')所以加了-loader
Sorry, something went wrong.
修复之前临时用这个处理了
modifyWebpackConfig: function(baseConfig) { baseConfig.module.loaders.forEach(function(item) { if (item.loader == 'happypack/loader') { item.loader = 'happypack/loader'.split('/').join(sysPath.sep); } }); return baseConfig; }
@bibiuc 感谢,我尽快修复
No branches or pull requests
The text was updated successfully, but these errors were encountered: