I have developed an extensible control where I want load audio tag from local resource which have been added as well but I keep keep getting this error
Failed to load resource: the server responded with a status of 404
The path on browser console looks like this
xxx.dynamics.com/.../button-10.mp3
My html tag is like
<source src="Resources/Sounds/button-10.mp3" type="audio/mp3">
I have tried it like these as well
<source src="/Resources/Sounds/button-10.mp3" type="audio/mp3">
<source src="../Resources/Sounds/button-10.mp3" type="audio/mp3">
Can anyone tell me what is the issue here?