1
0
Fork 0
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:
dkanada 2021-09-03 22:28:40 +09:00 committed by GitHub
commit c24d3b5f04
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 328 additions and 1000 deletions

1324
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -53,7 +53,7 @@
"typescript": "^4.4.2",
"webpack": "^5.51.1",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^3.11.2",
"webpack-dev-server": "^4.0.0",
"webpack-merge": "^5.8.0",
"workbox-webpack-plugin": "^6.2.4",
"worker-plugin": "^5.0.1"

View file

@ -1,4 +1,3 @@
const path = require('path');
const common = require('./webpack.common');
const { merge } = require('webpack-merge');
@ -25,7 +24,6 @@ module.exports = merge(common, {
]
},
devServer: {
contentBase: path.join(__dirname, 'dist'),
compress: true
}
});