Slide 15
Slide 15 text
/* apps/web/webpack.config.js */
const WebpackNotifierPlugin = require('webpack-notifier');
const getWebpackConfig = require('@nrwl/react/plugins/webpack');
module.exports = config => {
return getWebpackConfig({
...config,
plugins: [
...config.plugins,
new WebpackNotifierPlugin({ alwaysNotify: true }),
]
});
};
webpack設定上書き
15