You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The compiled cloudflare_worker wasm is currently around 1.2MB. The opt-level and ltotricks didn't reduce that. It's clearlypossible to make small wasm binaries. Investigate the easiest change possible to make this one smaller.
The compiled
cloudflare_worker
wasm is currently around 1.2MB. Theopt-level
andlto
tricks didn't reduce that. It's clearly possible to make small wasm binaries. Investigate the easiest change possible to make this one smaller.The
twiggy
command identifiedtable[0]
as the main culprit. I think that might have to do with the use of JS callbacks? Judging by the MDN article and Lin Clark's article.Things I didn't try:
format!
panic
no_main
no_std
Articles I didn't read:
The text was updated successfully, but these errors were encountered: