mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Merge pull request #2882 from jellyfin/dependabot/npm_and_yarn/webpack-dev-server-4.0.0
Bump webpack-dev-server from 3.11.2 to 4.0.0
This commit is contained in:
commit
c24d3b5f04
3 changed files with 328 additions and 1000 deletions
1324
package-lock.json
generated
1324
package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
@ -53,7 +53,7 @@
|
||||||
"typescript": "^4.4.2",
|
"typescript": "^4.4.2",
|
||||||
"webpack": "^5.51.1",
|
"webpack": "^5.51.1",
|
||||||
"webpack-cli": "^4.8.0",
|
"webpack-cli": "^4.8.0",
|
||||||
"webpack-dev-server": "^3.11.2",
|
"webpack-dev-server": "^4.0.0",
|
||||||
"webpack-merge": "^5.8.0",
|
"webpack-merge": "^5.8.0",
|
||||||
"workbox-webpack-plugin": "^6.2.4",
|
"workbox-webpack-plugin": "^6.2.4",
|
||||||
"worker-plugin": "^5.0.1"
|
"worker-plugin": "^5.0.1"
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
const path = require('path');
|
|
||||||
const common = require('./webpack.common');
|
const common = require('./webpack.common');
|
||||||
const { merge } = require('webpack-merge');
|
const { merge } = require('webpack-merge');
|
||||||
|
|
||||||
|
@ -25,7 +24,6 @@ module.exports = merge(common, {
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
devServer: {
|
devServer: {
|
||||||
contentBase: path.join(__dirname, 'dist'),
|
|
||||||
compress: true
|
compress: true
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue