You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Generated webpack config no include plugins from base.js to dev.js and dist.js. Moreover no include plugins and resolve.alias to test.js.
My proposals:
Add config.plugins = baseConfig.plugins.concat(config.plugins); line before module.exports = config; in cfg/dev.js and cfg/dist.js like in my commit in my project.
Add module.exports.resolve.alias = Object.assign({}, baseConfig.resolve.alias, module.exports.resolve.alias); and module.exports.plugins = baseConfig.plugins.concat(module.exports.plugins); lines at the end of cfg/test.js like in my commit.
The text was updated successfully, but these errors were encountered:
Generated webpack config no include
plugins
frombase.js
todev.js
anddist.js
. Moreover no includeplugins
andresolve.alias
totest.js
.My proposals:
config.plugins = baseConfig.plugins.concat(config.plugins);
line beforemodule.exports = config;
incfg/dev.js
andcfg/dist.js
like in my commit in my project.module.exports.resolve.alias = Object.assign({}, baseConfig.resolve.alias, module.exports.resolve.alias);
andmodule.exports.plugins = baseConfig.plugins.concat(module.exports.plugins);
lines at the end ofcfg/test.js
like in my commit.The text was updated successfully, but these errors were encountered: