2

我正在尝试通过 https 本地运行我的 React 应用程序。我已按照本教程的步骤进行操作,已mkcert正确安装,我的项目的根目录当前如下所示:

|-- my-react-app
    |-- package.json
    |-- localhost.pem
    |-- localhost-key.pem
    |--... 

我的 package.json 文件如下所示:

"scripts": {
    "start": "HTTPS=true SSL_CRT_FILE=localhost.pem SSL_KEY_FILE=localhost-key.pem react-scripts start",
    ...

然而,当我运行 npm start 时,我收到此错误:

'HTTPS' is not recognized as an internal or external command, operable program or batch file.

.env我还尝试在根目录中创建一个文件并添加如下变量:

HTTPS=true
SSL_CERT_FILE=localhost.pem
SSL_KEY_FILE=localhost-key.pem

但是,当我以这种方式运行应用程序时,我会收到一条警告说我的连接不安全。

我花时间搜索错误,到目前为止仍然无法找到解决方案。

4

1 回答 1

2

解决方案是将我的 package.json 文件修改为如下所示:

"scripts": {
    "start": "set HTTPS=true&&set SSL_CRT_FILE=localhost.pem&&set SSL_KEY_FILE=localhost-key.pem&&react-scripts start",
    ...

这产生了一个RangeError: Invalid typed array length: -4095开始。将我的反应脚本升级到最新版本npm install --save react-scripts@latest解决了这个问题。

我现在在我的本地主机上有一个安全连接。希望这对将来的其他人有所帮助。

于 2021-06-23T11:11:22.543 回答