In a compose project, what's the difference betwee...
# javascript
n
In a compose project, what's the difference between
jsBrowserWebPack
&
wasmJsBrowserWebPack
? I do notice the JS one does not include the
.wasm
file.
a
jsBrowserWebpack
bundles JavaScript version of your application (including jsMain source set)
wasmJsBrowserWebpack
bundles Wasm version of your application (including wasmJsMain source set)
K 1