Only show overlay on build errors

johannes/nuke-worker-loader
Johannes Marbach 2023-11-09 16:11:49 +01:00
parent ae1d21f08e
commit 42da986ed3
1 changed files with 9 additions and 0 deletions

View File

@ -749,6 +749,15 @@ module.exports = (env, argv) => {
// configuration for the webpack-dev-server
devServer: {
client: {
overlay: {
// Only show overlay on build errors as anything more can get annoying quickly
errors: true,
warnings : false,
runtimeErrors: false,
}
},
static: {
// Where to serve static assets from
directory: "./webapp",