vscode launch option

This commit is contained in:
kuviman 2025-01-15 19:37:42 +00:00
parent 7f5c15ab2f
commit 2523a1052b

18
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,18 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Run dev",
"runtimeExecutable": "next",
"cwd": "${workspaceFolder}",
"args": [
"dev"
]
}
]
}