When I try to access that on iPhone XR using Chrome or Safari, all i get is a black screen. Is it being blocked in some way by iOS? I can see in the Heroku logs that the request is accepted… and Im not seeing any errors in that log. Desktop is accessible and works just fine.
Im not sure where to go from here. I’ve googled around, but haven’t had much luck. Any help would be great! Thanks!
I will look into trying an emulator and additional debugging remotely. Through terminal in VS code, I was able to watch the logs —tail while I accessed the site on my iPhone. No error messages popped in there.
What I did that fixed it… I removed the < script > tag from the index.html file that was including the BasicButton and instead used import { BasicButton } from ‘./BasicButton.js’ at the top of the file. I also made sure the export the BasicButton class in the BasicButton.js file.