Disable warnings in webpack dev server overlay

This commit is contained in:
Bill Thornton 2021-09-05 01:23:06 -04:00
parent f5ea7bc830
commit 71f08fd6dc

View File

@ -24,6 +24,12 @@ module.exports = merge(common, {
]
},
devServer: {
compress: true
compress: true,
client: {
overlay: {
errors: true,
warnings: false
}
}
}
});