Files
CreaBook/client/vite.config.ts
2026-04-05 03:08:53 +02:00

26 lines
489 B
TypeScript

import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
import path from 'path';
export default defineConfig({
plugins: [react()],
resolve: {
alias: {
'@': path.resolve(__dirname, './src'),
},
},
server: {
port: 5000,
proxy: {
'/api': {
target: 'http://localhost:5001',
changeOrigin: true,
},
'/uploads': {
target: 'http://localhost:5001',
changeOrigin: true,
},
},
},
});