SurfSense/apps/web/.vscode/launch.json
2024-07-30 16:00:11 -07:00

17 lines
375 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Next.js: Chrome",
"type": "node-terminal",
"request": "launch",
"command": "pnpm run dev",
"serverReadyAction": {
"pattern": "- Local:.+(https?://.+)",
"uriFormat": "%s",
"action": "debugWithChrome",
"webRoot": "${workspaceFolder}"
}
}
]
}