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
I'm currently working on a project using yew + webpack for the frontend.
I ran into a small issue where i have specified the start function with #[wasm_bindgen(start)] but the import got excluded from the bundled javascript file by webpack. This is because the package.json contains sideEffets : false and the library not being used otherwise. This isn't really a huge issue for me though and I'm not sure how easy or compicated it is to implement.
I just wanted to point it out, in case someone else faces the same issue.
The text was updated successfully, but these errors were encountered:
💡 Feature description
I'm currently working on a project using yew + webpack for the frontend.
I ran into a small issue where i have specified the start function with #[wasm_bindgen(start)] but the import got excluded from the bundled javascript file by webpack. This is because the package.json contains
sideEffets : false
and the library not being used otherwise. This isn't really a huge issue for me though and I'm not sure how easy or compicated it is to implement.I just wanted to point it out, in case someone else faces the same issue.
The text was updated successfully, but these errors were encountered: