mirror of
https://github.com/Hackdex-App/hackdex-website.git
synced 2026-04-08 10:34:47 -05:00
33 lines
780 B
JSON
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"
|
|
}
|
|
}
|
|
]
|
|
}
|