Closed baranovxyz closed 7 years ago
There is a better fix for that. Move the user config at the bottom of the configs/webpack.config.js
Then it will overwrite the flavor config
There is a better fix for that. Move the user config at the bottom of the configs/webpack.config.js Then it will overwrite the flavor config
Moving from
module.exports = createConfig([
customConfig(userConfig),
tslint(),
...
])
to
module.exports = createConfig([
tslint(),
...,
customConfig(userConfig)
])
Does not work for me...
Weird
Found the issue and fixed it, now the userConfig
always overwrites predefined values
In webpack.config.js