I implemented the solution found in this RStudio community's thread to remove the worker IDs that get automatically appended to my shinyMobile app's root URL when deploying to shinyapps.io
The solution consisted in commenting out window.history.replaceState( {} , 'newpath', newpath);
in the shinyMobile/inst/framework7-5.7.8/my-app.js script
. This line precisely.
It worked perfectly, until I discovered that the tab links are somehow still initialized with the worker ID in them, but because of my change, the worker ID is removed upon first click, causing the tab links to become broken. The result is that the user cannot navigate the app anymore! See this screencast: https://vimeo.com/493012866/fb3a712dae
I tried to locate the script where the tab links are initialized in shinyMobile, but I could not find it.
Any tip here would be greatly appreciated, as I have absolutely no clue how to solve this. I did post to shinyMobile's GitHub, but looking at the other issues, it seems like the author is not very responsive...
Thank you in advance for any help