By default, Compose/WasmJS is loaded from the root path wasmJsMain/resources/index.html.
I'm trying to create a another path in the website like so:
wasmJSMain/
|
+-resources/
|
+-index.html
|
+-path/
|
+-index.html
However, when I load up http://localhost:8080/path, I get 404s for all references to composeResources: MissingResourceException: Missing resource with path: ./composeResources/my.package.name/drawable/compose-multiplatform.xml
How do you access composeResources from a non-root path in Compose/WasmJS?