asked in this
thread
but i think is
.mjs
path issue, because of this
const wasmFilePath = './composeApp.wasm';
if i were to open a url like
<http://localhost:8080/auth/login>
i'll get an error, as far as i know,
const wasmFilePath = './composeApp.wasm';
means it's trying to load
<http://localhost:8080/auth/composeApp.wasm>
instead of
<http://localhost:8080/composeApp.wasm>
.. it's relative to the current url