Update dependency webpack-dev-server to v5 (#83258)

* Update dependency webpack-dev-server to v5

* update webpack.hot config (is this even used anymore?)

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Ashley Harrison <ashley.harrison@grafana.com>
This commit is contained in:
renovate[bot]
2024-02-23 11:43:16 +02:00
committed by GitHub
parent 217154f85d
commit ad80518db0
3 changed files with 253 additions and 137 deletions

View File

@@ -30,9 +30,12 @@ module.exports = merge(common, {
hot: true,
open: false,
port: 3333,
proxy: {
'!/public/build': 'http://localhost:3000',
},
proxy: [
{
context: '!/public/build',
target: 'http://localhost:3000',
},
],
static: {
publicPath: '/public/build/',
},