You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tryFullStack/web/.vscode/launch.json

27 lines
684 B

4 weeks ago
{
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
4 weeks ago
"name": "Next.js client debug (Chrome)",
"url": "http://127.0.0.1:3000",
"webRoot": "${workspaceFolder}",
"sourceMaps": true,
"trace": true,
"timeout": 20000
},
{
"type": "chrome",
"request": "launch",
"name": "Next.js client debug (Whale)",
"url": "http://127.0.0.1:3000",
"webRoot": "${workspaceFolder}",
"runtimeExecutable": "C:\\Program Files\\Naver\\Naver Whale\\Application\\whale.exe",
"sourceMaps": true,
"trace": true,
"timeout": 20000
4 weeks ago
}
]
}