fix(fetch): use Vite proxy + Vercel rewrites for reliable Dropbox loading

Replace unreliable third-party CORS proxies (allorigins, cors-anywhere,
thingproxy) with a local /dropbox-file route proxied server-side:
- vite.config.ts: add dev server proxy for /dropbox-file -> dl.dropboxusercontent.com
- vercel.json: add rewrite rule for the same route in production
- App.tsx: simplify fetch logic to use single reliable proxy path

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
christian.vidal
2026-03-27 12:28:30 +01:00
co-authored by Claude Sonnet 4.6
parent f43d8f367e
commit d6a2efaf7d
3 changed files with 61 additions and 63 deletions
+8
View File
@@ -0,0 +1,8 @@
{
"rewrites": [
{
"source": "/dropbox-file/:path*",
"destination": "https://dl.dropboxusercontent.com/:path*"
}
]
}