I have some problem running my game on github pages, I noticed that bevy tries to fetch assets from
https://maksasj.github.io/assets/*, but this is a not valid url, valid url should look like this
https://maksasj.github.io/MYPAGE/assets/*. Well I tried to set custom asset folder path as
#[cfg(target = "wasm32-unknown-unknown")]
{
default_plugin = default_plugin.set(AssetPlugin{watch_for_changes: true, asset_folder: "MYPAGE/assets".into(), ..Default::default()});
}
Just adding, MYPAGE thing in path, but this approach did not really work, is asset_folder parameter work on web ?
