menu

Search By Label

The WebpackBar plugin provides an improved progress bar and displays file names in real time.

image.png 30.7 KB

Implementation:
const WebpackBar = require('webpackbar');

module.exports = {
    // Otras configuraciones...
    plugins: [
        new WebpackBar()
    ]
};

You can get more information about the progress of your Webpack bundle by adding the flag --progress

Example:
npx webpack --config ./webpack.config.core.js --progress