hackdex-website/.vscode/launch.json
2025-10-15 13:57:26 -10:00

33 lines
780 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Next.js: debug server-side",
"preLaunchTask": "startMinio",
"postDebugTask": "stopMinio",
"type": "node-terminal",
"request": "launch",
"command": "npm run dev"
},
{
"name": "Next.js: debug client-side",
"type": "chrome",
"request": "launch",
"url": "http://localhost:3000"
},
{
"name": "Next.js: debug full stack",
"type": "node-terminal",
"request": "launch",
"command": "npm run dev",
"preLaunchTask": "startMinio",
"postDebugTask": "stopMinio",
"serverReadyAction": {
"pattern": "- Local:.+(https?://.+)",
"uriFormat": "%s",
"action": "debugWithChrome"
}
}
]
}