I currently develop web solutions with Vuejs, I deploy my sites on my own servers using Nginx.
I have been testing Cloudflare Pages to migrate to this service but I found a problem, and that is that I cannot access my static files directly. For example, a file in this path: https ://my-site.com/img/fb_logo.png
Using the _headers file I could get it to work, but only and exclusively if the site is not loaded previously and if it is entered with the direct URL https ://my-site.com/img/fb_logo.png in the browser.
On my server this is easily solved by adding try_files $uri $uri/ /index.html
to the Nginx configuration.
Is it possible to do this with Cloudflare Pages? so I can load these files this way?