Update webpack-dev-server to 4.15.1

This commit is contained in:
Johannes Marbach 2023-09-22 20:57:00 +02:00
parent 218a3b478d
commit e0954f330a
3 changed files with 341 additions and 512 deletions

View file

@ -48,7 +48,7 @@
"start": "yarn build:module_system && concurrently --kill-others-on-fail --prefix \"{time} [{name}]\" -n res,element-js \"yarn start:res\" \"yarn start:js\"", "start": "yarn build:module_system && concurrently --kill-others-on-fail --prefix \"{time} [{name}]\" -n res,element-js \"yarn start:res\" \"yarn start:js\"",
"start:https": "concurrently --kill-others-on-fail --prefix \"{time} [{name}]\" -n res,element-js \"yarn start:res\" \"yarn start:js --https\"", "start:https": "concurrently --kill-others-on-fail --prefix \"{time} [{name}]\" -n res,element-js \"yarn start:res\" \"yarn start:js --https\"",
"start:res": "yarn build:jitsi && ts-node scripts/copy-res.ts -w", "start:res": "yarn build:jitsi && ts-node scripts/copy-res.ts -w",
"start:js": "webpack serve --output-path webapp --mode development --disable-host-check --hot", "start:js": "webpack serve --output-path webapp --mode development",
"lint": "yarn lint:types && yarn lint:js && yarn lint:style", "lint": "yarn lint:types && yarn lint:js && yarn lint:style",
"lint:js": "yarn lint:js:src && yarn lint:js:module_system", "lint:js": "yarn lint:js:src && yarn lint:js:module_system",
"lint:js:src": "eslint --max-warnings 0 src test && prettier --check .", "lint:js:src": "eslint --max-warnings 0 src test && prettier --check .",
@ -184,7 +184,7 @@
"webpack": "^4.47.0", "webpack": "^4.47.0",
"webpack-bundle-analyzer": "^4.8.0", "webpack-bundle-analyzer": "^4.8.0",
"webpack-cli": "^4.10.0", "webpack-cli": "^4.10.0",
"webpack-dev-server": "^3.11.2", "webpack-dev-server": "^4.15.1",
"worker-loader": "^3.0.0", "worker-loader": "^3.0.0",
"worklet-loader": "^2.0.0", "worklet-loader": "^2.0.0",
"yaml": "^2.0.1" "yaml": "^2.0.1"

View file

@ -728,14 +728,23 @@ module.exports = (env, argv) => {
// configuration for the webpack-dev-server // configuration for the webpack-dev-server
devServer: { devServer: {
// serve unwebpacked assets from webapp. static: {
contentBase: ["./webapp"], // Where to serve static assets from
directory: "./webapp",
},
// Only output errors, warnings, or new compilations. devMiddleware: {
// This hides the massive list of modules. // Only output errors, warnings, or new compilations.
stats: "minimal", // This hides the massive list of modules.
hotOnly: true, stats: "minimal",
inline: true, },
// Enable Hot Module Replacement without page refresh as a fallback in
// case of build failures
hot: "only",
// Disable host check
allowedHosts: 'all',
}, },
}; };
}; };

826
yarn.lock

File diff suppressed because it is too large Load diff