无法安装npm install webtorrent试过的旧版本和混合版本。
,这是我得到的错误

谢谢你提前帮我。
发布于 2021-12-28 11:55:19
你应该看看webpack区的https://github.com/feross/webtorrent。它解释了您需要添加几行配置来使其工作。
{
target: 'web',
node: {
fs: 'empty'
},
module: {
loaders: [
// make sure to install the 'json-loader' package: npm install json-loader
{
test: /\.json$/,
loader: 'json'
}
]
}
}https://stackoverflow.com/questions/70506603
复制相似问题