Replies: 2 comments 3 replies
-
Try this {
"version": "0.2.0",
"configurations": [
{
"type": "pwa-node",
"request": "launch",
"name": "Debug Application",
"runtimeExecutable": "node",
"runtimeArgs": ["ace", "serve", "--watch"],
"internalConsoleOptions": "openOnSessionStart"
}
]
} |
Beta Was this translation helpful? Give feedback.
3 replies
-
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
I am trying to setup the VSCode debugger for an Adonis project. I am using the
node ace serve
command to run my project, and my breakpoints keep being ignored.Here is my
.vscode/launch.json
configuration:Node version : v14.17.3
It appears that the
ace
file is debugged, but not the web server itselfIs there any trick here that I am missing ? What about adding a debug section in the documentation ?
Thanks !
Beta Was this translation helpful? Give feedback.
All reactions