Closed
Description
What problem does this feature solve?
The vue-cli needs to provide a configuration that modifies the final webpack config before the webpack runs. For example, I need to customize the output file name when building the web component.
What does the proposed API look like?
// vue.config.js
module.exports = {
finalWebpack: (config) => {
return config
}
}