Super simple question, I spun up a brand new Ionic 4 Capacitor/React app. I want to play a .mov file that’s located in my /src/assets/splash_screen.mov
location.
This doesn’t seem to work:
<video fullscreen="fullscreen" autoPlay={true}>
<source src="../../assets/splash_screen.mov" type="video/mp4" />
</video>
I see this in my network tab:
Also tried it without the leading ../../assets
and it still doesn’t play. Appreciate the help!