: окружающие среды
Визуальный код с расширением Live Server для отладки моего кода
*
launch.json 1003 *
{
// 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": "CHROME",
"program": "${workspaceFolder}\\serve"
}
]
}
А это мои настройки. Json
{
"liveServer.settings.port": 5000,
"liveServer.settings.host": "localhost",
"liveServer.settings.root": "/index.html",
"liveServer.settings.CustomBrowser" : "chrome",
"liveServer.settings.AdvanceCustomBrowserCmdLine": "chrome --remote-debugging-port=9222",
"liveServer.settings.ignoreFiles" : [
".vscode/**",
"**/*.scss",
"**/*.sass"
]
}
Теперь я сталкиваюсь с проблемой, что я запускаю
Может кто-нибудь подсказать, какая может быть ошибка в моем конфиге?