Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix broken notebook loading on firefox by compressing the encoded was…
…m payload (#8426) ### Related - Resolves: #8154 ### What It turns out firefox doesn't let you create a dataurl larger than 32MB. Although our `.wasm` was under this threshold, the overhead of base64-encoding pushed us over the threshold. However, as we were encoding the raw, uncompressed .wasm, we still actually have plenty of margin... we just need to jump through more hoops to use it now. Using DecompressionStream like this seems to be generally available across our target browsers so I think we should be good?
- Loading branch information