一些老项目因为不为人知的原因,出现报错:
consoleError: You must provide the URL of lib/mappings.wasm by calling SourceMapConsumer.initialize({ 'lib/mappings.wasm': ... }) before using SourceMapConsumer
找到一个临时解决方案:运行项目时设置环境变量NODE_OPTIONS=--openssl-legacy-provider
。
Windows环境为例,修改运行脚本:
bash# 原来
# react-scripts start
# 修改后
set NODE_OPTIONS=--openssl-legacy-provider && react-scripts start
PS:上面的修改在 package.json
中进行即可。如:
package.json
:json{
"scripts": {
"dev": "react-scripts start"
}
}
package.json
:json{
"scripts": {
"dev": "set NODE_OPTIONS=--openssl-legacy-provider && react-scripts start"
}
}
参考:https://github.com/parcel-bundler/parcel/issues/8005#issuecomment-1120149358
本文用于记录一些突然想到的奇怪域名。
一般记录时的域名还是无主状态,如果有看中并且得手的朋友,可以留言通知一下哦~😀
PS:Theshy来全买了! 😎