$ cnpm install node-polyfill-webpack-plugin
Polyfill Node.js core modules in Webpack.
This module is only needed for webpack 5+.
npm install node-polyfill-webpack-plugin
Add the following to your webpack.config.js
:
const NodePolyfillPlugin = require("node-polyfill-webpack-plugin")
module.exports = {
// Other rules...
plugins: [
new NodePolyfillPlugin()
]
}
Copyright 2014 - 2016 © taobao.org |