升级项目使用外部包时报错,查了下解决方案,记录下
我根据我使用的的情况具体了下方案,我是使用jhipster的,所以具体如下。
首先
npm install node-polyfill-webpack-plugin
然后修改webpack.custom.js
const NodePolyfillPlugin = require('node-polyfill-webpack-plugin')
module.exports = async (config, options, targetOptions) => {
//......
config.plugins.push(
new NodePolyfillPlugin()
);
//......
})