mirror of
https://github.com/langgenius/webapp-conversation.git
synced 2025-12-25 01:16:39 +08:00
29 lines
651 B
JSON
29 lines
651 B
JSON
{
|
|
"version": "0.1.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Next.js: debug server-side",
|
|
"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",
|
|
"serverReadyAction": {
|
|
"pattern": "started server on .+, url: (https?://.+)",
|
|
"uriFormat": "%s",
|
|
"action": "debugWithChrome"
|
|
}
|
|
}
|
|
]
|
|
}
|