Files
tryFullStack/web/.vscode/launch.json
Peace 07eee63e35 fix
2025-08-26 23:17:27 +09:00

27 lines
684 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"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
}
]
}