我有一个React JS SPA。我需要在https上进行调试,但本地主机的网址为http://localhost:3000/。
我正在使用Visual Studio代码
如何使用有效证书更改调试URL以进行本地调试?谢谢
我是初学者。
我的launch.json
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "Launch Chrome localhost",
"url": "http://localhost:3000",
"webRoot": "${workspaceFolder}",
}
]
}