I have deployed my first site on azure, it is a website with static content only.I have the video and html file in the same dir, which is wwwroot I have provided a video path in the index.html like this
<video loop muted width="1024" height="768" autoplay style="width: 101% !important;height: 100% !important;margin-top: -2%;margin-left: -1%;">
<source src="intro.mp4" type="video/mp4">
</video>
And its playing properly on local as i checked, but once i deployed the content to azure, the other content load but the video does not loads, and it gives 404 as i checked in the network tab.
Also the request url in network console is www.mywebsite.com/intro.mp4 and it is 404 not found
I could not understand why is this happening , please help