From f852cdad82dc7fa4789f023e8052fc4919762fe5 Mon Sep 17 00:00:00 2001 From: NikolaBorislavovHristov Date: Thu, 18 Jul 2019 13:15:41 +0300 Subject: [PATCH] progress webpack plugin added into the build pipeline --- webpack.config.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/webpack.config.js b/webpack.config.js index 5ef727122..49a31a7b3 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -1,4 +1,5 @@ const path = require('path'); +const webpack = require('webpack'); const HtmlWebPackPlugin = require('html-webpack-plugin'); const CopyWebpackPlugin = require('copy-webpack-plugin'); const TerserPlugin = require('terser-webpack-plugin'); @@ -123,6 +124,7 @@ module.exports = { ] }, plugins: [ + new webpack.ProgressPlugin(), new HtmlWebPackPlugin({ template: './src/index.html', inject: false