Resolving Javascript Modules with importmap not working on android chrome

I have a symfony project with the assetmapper package active. There is an app.js which imports:

import './styles/app.css';
import Wood from "./wood.js";

The gernerated importmap looks like this:

<script type="importmap">
{
    "imports": {
        "app": "/assets/app-g2dctYT.js",
        "/assets/styles/app.css": "data:application/javascript,",
        "/assets/wood.js": "/assets/wood-PRFWpuV.js"
    }
}
</script>

On my Desktop Chrome. Everything works as expected. But on the mobile chrome on my android device (134.0.6998.135) it will try to load the file from /assets/wood.js instead of /assets/wood-PRFWpuV.js. If a manually edit the importmap making it “foo”: “/assets/wood-PRFWpuV.js” and making it import Wood from “foo” accordingly it works. Is there a known issue on chrome Android with this or am I doing something wrong?