这个问题是由于webpack 5的breaking change所引起的,主要是由于webpack 5移除了一些内部API。要解决这个问题,需要安装webpack 5.x.x版本中的webpack依赖模块“webpack-internal/constants”,并将其添加到webpack配置文件中。代码示例如下:
const webpack = require('webpack');
const Constants = require('webpack-internal/constants');
module.exports = {
//...其它配置
plugins: [
new webpack.DefinePlugin(Constants),
//...其它插件
],
//...其它配置
}