How to debug why an island is working locally but not working when deployed?
I have an Island containing a select that changes the URL when a new item is selected. It is also disabled afterwards, since the "selected page" might need a bit time to load.
When testing it locally everything works fine, but when pushing and it is deployed to deno deploy the select does nothing. The devtools also say that no event listener has been attached. The code that is being fetched looks correct. I added two console.log to see whether they are called on the client: first line in the Island and first line in the event handler.
None of them reports to the browser console, so they are not executed on the client.
I disabled all adblockers.
How can I debug / understand what is going on?
When testing it locally everything works fine, but when pushing and it is deployed to deno deploy the select does nothing. The devtools also say that no event listener has been attached. The code that is being fetched looks correct. I added two console.log to see whether they are called on the client: first line in the Island and first line in the event handler.
None of them reports to the browser console, so they are not executed on the client.
I disabled all adblockers.
How can I debug / understand what is going on?
