Merge pull request #2912 from thornbill/overlay-warnings

Disable warnings in webpack dev server overlay
This commit is contained in:
dkanada 2021-09-05 19:46:19 +09:00 committed by GitHub
commit 9943892c2e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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