I have this audio code with audio file save inside the src/assets
const someAudio = require("src/assets/some-audio.wav");
.
.
<audio controls preload="none" controlsList="nodownload">
<source src={someAudio} type="audio/wav" />
</audio>
When the app is running the page with this <audio> tag instead of playable audio it's going to download the audio file instead and the audio control became disabled, how to prevent the auto download when using audio stored in the same repository?
*note it works as expected by using audio url link outside the app