Skip to content

Commit

Permalink
Integrate changes from #3487
Browse files Browse the repository at this point in the history
  • Loading branch information
Hypnosphi committed Apr 25, 2018
1 parent 6e17afc commit 9a919ff
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/html/src/server/config/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import { includePaths, excludePaths, nodeModulesPaths, loadEnv, nodePaths } from
import babelLoaderConfig from './babel';
import { version } from '../../../package.json';

export default function(configDir) {
export default function(configDir, quiet) {
const config = {
mode: 'development',
devtool: 'cheap-module-source-map',
Expand Down Expand Up @@ -59,9 +59,9 @@ export default function(configDir) {
new webpack.HotModuleReplacementPlugin(),
new CaseSensitivePathsPlugin(),
new WatchMissingNodeModulesPlugin(nodeModulesPaths),
new webpack.ProgressPlugin(),
quiet ? null : new webpack.ProgressPlugin(),
new Dotenv({ silent: true }),
],
].filter(Boolean),
module: {
rules: [
{
Expand Down

0 comments on commit 9a919ff

Please sign in to comment.