Desktop app crashing when not in demoMode #340
-
When I set demoMode to false(here), the desktop window closes without any error on Windows machine. Is this an issue faced by others? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
The error will be in the console where you started the app. If you started the app through an exe, it would be a good to start it from a terminal so you can see the error. |
Beta Was this translation helpful? Give feedback.
-
I was gettting this error when i ran the code from terminal
I further debugged by opening the dev tool for frontend app(check tauri site on how to do it), I found that the demoMode flag that I was updating was readonly flag, hence it was erroring out. I updated the flag on object creation and that resolved the issue. |
Beta Was this translation helpful? Give feedback.
I was gettting this error when i ran the code from terminal
I further debugged by opening the dev tool for frontend app(check tauri …