Files
tryFullStack/web/.vscode/launch.json

27 lines
684 B
JSON
Raw Normal View History

2025-08-25 17:23:25 +09:00
{
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
2025-08-26 23:17:27 +09:00
"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
2025-08-25 17:23:25 +09:00
}
]
}