const path = require('path');
module.exports = {
mode:'development',
entry: './src/index.js',
output: {
// 虚拟路径名字
publicPath:'dist',
filename: 'bundle.js',
},
devServer:{
port:8080,
// contentBase:"www"
// 静态文件路径
static:"www" // contentBase 修改成 static
}
};
以前webpack4的时候配置devServer中用的是contentBase:“www”;
webpack5需要替换成 static:“www”