Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion frontend/webpack.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ const config: Configuration = {
],
}),
extractCSS,
...(REACT_REFRESH ? [new ReactRefreshWebpackPlugin()] : []),
...(REACT_REFRESH ? [new ReactRefreshWebpackPlugin()] : [new webpack.ProgressPlugin()]),
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

When REACT_REFRESH is true, we already know there is a progress bar (because yarn dev has one). so we don't need another.

Whether we want this plugin in CI is another question - ProgressPlugin is compatible with logging but it also makes our build logs a lot more verbose

],
devtool: 'cheap-module-source-map',
stats: 'minimal',
Expand Down