1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

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
}
}
}
});