How will you debug the react app only? #730
Unanswered
gcarvajal1222
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I noticed that when hitting the vscode launch.json it debugs the backend and the front end app, is there a way to debug the front end app by hitting the backend app with port 50505 and the front end app with a different port?
{ "version": "0.2.0", "configurations": [ { "name": "Python: Sample App Backend", "type": "debugpy", "request": "launch", "module": "quart", "cwd": "${workspaceFolder}", "env": { "QUART_APP": "app:app", "QUART_ENV": "development", "QUART_DEBUG": "0" }, "args": [ "run", "--no-reload", "-p 50505" ], "console": "integratedTerminal", "justMyCode": false, "envFile": "${workspaceFolder}/.env", } ] }
Beta Was this translation helpful? Give feedback.
All reactions