I’m using a video to do the background of my page. Everything works perfectly locally but when I deploy it on vercel, the video disappear and I just have a white background.
My push github is well done as the video appear on my repo.
Thanks for describing your issue! Could you maybe share a link with us? We can then dig into the console to see if there are any logs to suggest any errors.
(I deploy only a simple page with the video as background just to see if it works as it didnt work on the project I was working first ( this one https://northlamb.vercel.app/ )
Hey @stephane-gioanni, the issue is related to the case sensitivity of your filename. Your video asset is named nlvid3.MP4, but your video tag uses nlvid3.mp4, which causes the mismatch.
This might work fine locally because some filesystems are case-insensitive. However, Vercel deployments use a case-sensitive filesystem, which is why the mismatch is causing issue.