mirror of
https://github.com/christianvidalwolf-prog/Craze-Data-check.git
synced 2026-08-03 13:45:24 +02:00
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>
32 lines
915 B
TypeScript
32 lines
915 B
TypeScript
import tailwindcss from '@tailwindcss/vite';
|
|
import react from '@vitejs/plugin-react';
|
|
import path from 'path';
|
|
import {defineConfig, loadEnv} from 'vite';
|
|
|
|
export default defineConfig(({mode}) => {
|
|
const env = loadEnv(mode, '.', '');
|
|
return {
|
|
plugins: [react(), tailwindcss()],
|
|
define: {
|
|
'process.env.GEMINI_API_KEY': JSON.stringify(env.GEMINI_API_KEY),
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
'@': path.resolve(__dirname, '.'),
|
|
},
|
|
},
|
|
server: {
|
|
// HMR is disabled in AI Studio via DISABLE_HMR env var.
|
|
// Do not modify - file watching is disabled to prevent flickering during agent edits.
|
|
hmr: process.env.DISABLE_HMR !== 'true',
|
|
proxy: {
|
|
'/dropbox-file': {
|
|
target: 'https://dl.dropboxusercontent.com',
|
|
changeOrigin: true,
|
|
rewrite: (path) => path.replace(/^\/dropbox-file/, ''),
|
|
},
|
|
},
|
|
},
|
|
};
|
|
});
|