sigmadelta
12/27/2024, 7:00 PM18.2
. This is related to the fact that they only introduced support for WASM
GC with their recent os update.
To bypass this there is the option of exporting the whole project in JS, but I would prefer to stay in WASM
. Is there somehow an option to detect the browser of the user doesn't support WASM
GC and redirect him to a different index.html with an explanation or something?hfhbd
12/27/2024, 7:16 PMsigmadelta
12/27/2024, 7:18 PMsigmadelta
12/27/2024, 7:32 PMindex.html
and add a div in the body like <div id="wasmgc_support_1">...
• In your app entry point add the following document.getElementById("wasmgc_support_1")?.remove()
It will show it for a few miliseconds at the start of the page, but it sure beats having clueless users staring at a white page until iOS 18.2 adoption is a bit furtherPHondogo
12/27/2024, 7:40 PMhfhbd
12/27/2024, 7:42 PMhfhbd
12/27/2024, 7:45 PMsigmadelta
12/27/2024, 7:46 PMhfhbd
12/27/2024, 7:48 PMhfhbd
12/27/2024, 7:50 PMsigmadelta
12/27/2024, 8:30 PMdist
outputs and then merge these together I suppose?
But I assume more adaptations in the code are actually required to get this working no?hfhbd
12/27/2024, 9:24 PMsigmadelta
12/27/2024, 9:33 PM