diff options
Diffstat (limited to 'client/config/webpack.common.js')
-rw-r--r-- | client/config/webpack.common.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/client/config/webpack.common.js b/client/config/webpack.common.js index dec468736..2ff3a1506 100644 --- a/client/config/webpack.common.js +++ b/client/config/webpack.common.js | |||
@@ -8,6 +8,7 @@ const helpers = require('./helpers') | |||
8 | var CopyWebpackPlugin = (CopyWebpackPlugin = require('copy-webpack-plugin'), CopyWebpackPlugin.default || CopyWebpackPlugin) | 8 | var CopyWebpackPlugin = (CopyWebpackPlugin = require('copy-webpack-plugin'), CopyWebpackPlugin.default || CopyWebpackPlugin) |
9 | const HtmlWebpackPlugin = require('html-webpack-plugin') | 9 | const HtmlWebpackPlugin = require('html-webpack-plugin') |
10 | const ForkCheckerPlugin = require('awesome-typescript-loader').ForkCheckerPlugin | 10 | const ForkCheckerPlugin = require('awesome-typescript-loader').ForkCheckerPlugin |
11 | const WebpackNotifierPlugin = require('webpack-notifier') | ||
11 | 12 | ||
12 | /* | 13 | /* |
13 | * Webpack Constants | 14 | * Webpack Constants |
@@ -244,8 +245,9 @@ module.exports = { | |||
244 | new HtmlWebpackPlugin({ | 245 | new HtmlWebpackPlugin({ |
245 | template: 'src/index.html', | 246 | template: 'src/index.html', |
246 | chunksSortMode: 'dependency' | 247 | chunksSortMode: 'dependency' |
247 | }) | 248 | }), |
248 | 249 | ||
250 | new WebpackNotifierPlugin({ alwaysNotify: true }) | ||
249 | ], | 251 | ], |
250 | 252 | ||
251 | /* | 253 | /* |