Closed Hongbusi closed 2 years ago
Problem: How to use webpackbar to monitor the total compilation progress when exporting multiple configurations?
module.exports = [ { output: { filename: './dist-amd.js', libraryTarget: 'amd', }, name: 'amd', entry: './app.js', mode: 'production', }, { output: { filename: './dist-commonjs.js', libraryTarget: 'commonjs', }, name: 'commonjs', entry: './app.js', mode: 'production', }, ];
Thank you!
Can you share how do you solve this?
Problem: How to use webpackbar to monitor the total compilation progress when exporting multiple configurations?
Thank you!