'Webpack Dev Server Config - contentBase not working in latest version
When I upgrade webpack to 4.0.0-beta.3 and run npx webpack serve
I get this error:
[webpack-cli] Invalid configuration object. Object has been initialized using a configuration object that does not match the API schema.
- configuration has an unknown property 'contentBase'. These properties are valid:
object { bonjour?, client?, compress?, devMiddleware?, firewall?, headers?, historyApiFallback?, host?, hot?, http2?, https?, liveReload?, onAfterSetupMiddleware?, onBeforeSetupMiddleware?, onListening?, open?, port?, proxy?, public?, setupExitSignals?, static?, transportMode?, watchFiles? }
This is my webpack.config.js that works in 3.11.2:
const path = require('path');
const ArcGISPlugin = require("@arcgis/webpack-plugin");
module.exports = {
mode: 'development',
entry: {
main: './app/main.js'
},
plugins: [
new ArcGISPlugin()
],
devServer: {
contentBase: './'
}
}
my devDependencies from package.json:
"devDependencies": {
"@arcgis/webpack-plugin": "^4.18.0",
"dojo-typings": "^1.11.11",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^4.0.0-beta.3"
How do I need to update my config to get the latest version working? When I take out the dev server object, the server will run, but serve content out of ./public which doesn't exist.
I'm new to webpack, so I'm not yet familiar with the application, config, and requirements.
Solution 1:[1]
devServer: {
static: './'
}
I should read the errors more closely. The above object made my config work again.
Solution 2:[2]
devServer: {
static: {
directory: path.join(__dirname, "public")
},
compress: true,
port: 3010, // default 8000
},
Solution 3:[3]
Use static: './directory-name'
instead of contentBase: './directory-name'
Example:
devServer: {
static: './dist'
}
Solution 4:[4]
instead of contentBase we are using static
enter code here
const path = require("path");
module.exports = {
entry: "./app/Main.js",
output: {
publicPath: "/",
path: path.resolve(__dirname, "app"),
filename: "bundled.js"
},
mode: "development",
devtool: "source-map",
devServer: {
port: 3000,
static: {
directory: path.join(__dirname, "app")
},
hot: true,
historyApiFallback: { index: "index.html" }
},
module: {
rules: [
{
test: /\.js$/,
exclude: /(node_modules)/,
use: {
loader: "babel-loader",
options: {
presets: ["@babel/preset-react", ["@babel/preset-env", { targets: { node: "12" } }]]
}
}
}
]
}
};
Solution 5:[5]
Use static
instead as contentBase
is deprecated in latest Webpack v5
devServer: {
static: {
directory: path.join(__dirname, "./")
},
Full details: https://webpack.js.org/configuration/dev-server/#devserver
Solution 6:[6]
Also important to set clean to false. It happened to me...
webpackConfig = {
output: {
clean: false
}
}
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | ggorlen |
Solution 2 | skyTzy |
Solution 3 | ggorlen |
Solution 4 | Jai Kishan |
Solution 5 | rottitime |
Solution 6 | Carlos Oliveira |