I’m building a website using Quasar Framework (Vue), and I’m having trouble with .webp images after deployment.
Everything works perfectly in development mode.
When I run quasar build, the .webp images are generated correctly and I can see them inside the folder.
But after I deploy to my hosting, the website does not display any .webp images. All other images (.jpg, .png) load normally.
The weird part is:
The
.webpfiles are on the server in the correct paths.Browser supports WebP (tested Chrome, Firefox).
The same exact paths work locally when I serve
/dist.
What I’ve checked so far:
Correct URLs / paths
File names match
Case sensitivity
Cache cleared
Server is serving other static assets correctly
Is this a Quasar/Vite build problem or something related to the server configuration?
What should I investigate to fix .webp images not loading on the deployed website?