options has an unknown property ‘contentBase‘. These properties are valid: 【devServer contentBase报错】

因为最近在体验webpack5发现了个坑点,之前项目示例中的contentBase使用不了了

在这里插入图片描述
这个属性在新版的webpack-dev-server中被移除了, 取而代之的是以下这种
在这里插入图片描述

替换方案

devServer.static
options has an unknown property ‘contentBase‘. These properties are valid: 【devServer contentBase报错】_第1张图片
如果不设置,非webpack的内容将从public目录提供

devServer: {
	static: { // static: ['assets']
		directory: path.join(__dirname, 'src')
	},
}

你可能感兴趣的:(前端工程化,webpack)