У меня есть React JS SPA.Мне нужно отладить по https, но локальный URL-адрес 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}",
}
]
}