BREAKING CHANGE: webpack < 5 used to include polyfills for node.js core modules by default.
This is no longer the case. Verify if you need this module and configure a polyfill for it.
If you want to include a polyfill, you need to:
- add a fallback 'resolve.fallback: { "os": require.resolve("os-browserify/browser") }'
- install 'os-browserify'
If you don't want to include a polyfill, you can use an empty module like this:
resolve.fallback: { "os": false }
yarn add ode-polyfill-webpack-plugin
craco.config.js如下文章來源地址http://www.zghlxwxcb.cn/news/detail-661339.html
//對(duì)webpack配置別名
//對(duì)webpack配置別名
const path = require('path')
const NodePolyfillPlugin = require("node-polyfill-webpack-plugin");
module.exports = {
// webpack 配置
webpack: {
// 配置別名
alias: {
// 約定:使用 @ 表示 src 文件所在路徑
'@': path.resolve(__dirname, './src'),
},
configure: (webpackConfig) => {
if (webpackConfig.plugins) webpackConfig.plugins.push(new NodePolyfillPlugin({
excludeAliases: ['console']
}))
else webpackConfig.plugins = [new NodePolyfillPlugin({
excludeAliases: ['console']
})]
return webpackConfig
}
}
}
文章來源:http://www.zghlxwxcb.cn/news/detail-661339.html
到了這里,關(guān)于webpack < 5 used to include polyfills for node.js core modules by default的文章就介紹完了。如果您還想了解更多內(nèi)容,請(qǐng)?jiān)谟疑辖撬阉鱐OY模板網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章,希望大家以后多多支持TOY模板網(wǎng)!