mirror of
https://github.com/Tomato6966/investment-portfolio-simulator.git
synced 2025-04-03 21:40:35 +02:00
29 lines
742 B
TypeScript
29 lines
742 B
TypeScript
import { defineConfig, loadEnv } from "vite";
|
|
|
|
import react from "@vitejs/plugin-react";
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig(({ mode }) => {
|
|
const env = loadEnv(mode, process.cwd(), '');
|
|
const isDev = mode === 'development';
|
|
|
|
return {
|
|
plugins: [react()],
|
|
optimizeDeps: {
|
|
exclude: ['lucide-react'],
|
|
},
|
|
server: isDev ? {
|
|
proxy: {
|
|
'/yahoo': {
|
|
target: 'https://query1.finance.yahoo.com',
|
|
changeOrigin: true,
|
|
rewrite: (path) => path.replace(/^\/yahoo/, ''),
|
|
headers: {
|
|
'Origin': 'https://finance.yahoo.com'
|
|
}
|
|
}
|
|
}
|
|
} : undefined,
|
|
base: env.VITE_BASE_URL || '/',
|
|
};
|
|
});
|