gpt4 book ai didi

reactjs - razzle 无法解析 'fs'/'net'(服务器端渲染 react 应用程序)

转载 作者:行者123 更新时间:2023-12-05 03:05:05 25 4
gpt4 key购买 nike

目前正在使用 https://github.com/jaredpalmer/razzle实现 React 应用程序的 SSR。在我的节点模块中遇到以下错误:

ERROR: Can't resolve 'fs'

还有这个

ERROR: Can't resolve 'net'

我添加了一个 razzle.config.js 来自定义 razzle 配置,使其看起来像这样(如下),代码仍然没有运行。

module.exports = {
target: 'node',
node: {
console: 'empty',
fs: 'empty',
net: 'empty',
tls: 'empty'
}
};

知道我为什么会收到错误以及我可以采取什么措施来解决吗?

最佳答案

如果你想扩展 Webpack 配置,你需要使用 modify function of the razzle.config.js export .

示例

module.exports = {
modify: config => {
config.node = { fs: "empty" };
return config;
}
};

关于reactjs - razzle 无法解析 'fs'/'net'(服务器端渲染 react 应用程序),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51370582/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com