Closed
Description
Bevy version
What you did
Ran any example that loads assets under WASM / WebGL with:
cargo run -p build-wasm-example -- $EXAMPLE_NAME_HERE && python3 -m http.server --directory examples
/wasm
What went wrong
Got barraged with 404 error messages in the web inspector with the page trying to load .meta
files for every asset loaded.
Additional information

- Looks like with Bevy Asset V2 #8624 we now look for
.meta
files for every asset that we load - On native this is a non issue, however on the web we do a bunch of requests, which both spam the console with 404 errors and also potentially slow down loading of the files that actually exist