Skip to content

Commit

Permalink
Add launch.json
Browse files Browse the repository at this point in the history
  • Loading branch information
amozoss committed Sep 1, 2023
1 parent 0b308f8 commit bfb9ae3
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Next.js: Node",
"runtimeExecutable": "npm",
"runtimeArgs": ["run", "dev"],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
},
{
"type": "chrome",
"request": "launch",
"name": "Next.js: Chrome",
"url": "http://localhost:3000",
"webRoot": "${workspaceFolder}"
}
],
"compounds": [
{
"name": "Next.js: Full",
"configurations": ["Next.js: Node", "Next.js: Chrome"]
}
]
}

0 comments on commit bfb9ae3

Please sign in to comment.