Replies: 1 comment
-
|
Cannot debug fontend and backend in one step, its two different language.
{
"version": "0.2.0",
"configurations": [
{
"name": "Wails: debug",
"type": "go",
"request": "launch",
"mode": "exec",
"program": "${workspaceFolder}/build/bin/{Replace your app name}",
"preLaunchTask": "wails_debug_build",
"env": {},
"args": []
}
]
}tasks.json {
"version": "2.0.0",
"tasks": [
{
"label": "wails_debug_build",
"type": "shell",
"command": "wails build -debug -devtools"
}
]
}Then open the
|
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

Uh oh!
There was an error while loading. Please reload this page.
-
Is your feature request related to a problem? Please describe.
Need to debug front-end code, but have interaction with go, which is not satisfied by just running npm run dev (can't interact with go)
Describe the solution you'd like
tauri front remote debugging
It would be perfect if we could debug it this way.
Describe alternatives you've considered
No response
Additional context
No response
Beta Was this translation helpful? Give feedback.
All reactions