https://quasar.dev/start/vs-code-configuration#Debugging-a-Quasar-project-in-VS-Code
“Detailed instructions on how to configure with Quasar coming soon.”
…when, more or less?
https://quasar.dev/start/vs-code-configuration#Debugging-a-Quasar-project-in-VS-Code
“Detailed instructions on how to configure with Quasar coming soon.”
…when, more or less?
Hello everybody,
Is there somewhere a working example about how to configure a quasar project so as to be able to set breakpoints in the .vue files using VSCode?
I’ve tried with the following configuration suggested in the VSCode github site https://github.com/Microsoft/vscode-recipes/tree/master/vuejs-cli (that should work for vue-cli projects) but I didn’t get it to work with quasar:
{
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "vuejs: chrome",
"url": "http://localhost:8084",
"webRoot": "${workspaceFolder}/src",
"breakOnLoad": true,
"sourceMapPathOverrides": {
"webpack:///./src/*": "${webRoot}/*"
}
}
]
}
Thank you all in advance