【发布时间】:2022-01-27 01:48:03
【问题描述】:
【问题讨论】:
标签: node.js angular typescript ionic-framework webtorrent
【问题讨论】:
标签: node.js angular typescript ionic-framework webtorrent
你应该看看 https://github.com/feross/webtorrent 的 webpack 部分。它说明您需要添加几行配置才能使其正常工作。
{
target: 'web',
node: {
fs: 'empty'
},
module: {
loaders: [
// make sure to install the 'json-loader' package: npm install json-loader
{
test: /\.json$/,
loader: 'json'
}
]
}
}
【讨论】: