Files
productcatalogue_frontend/vite.config.ts
T

15 lines
326 B
TypeScript
Raw Normal View History

2026-06-16 13:08:58 +05:30
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import tailwindcss from '@tailwindcss/vite'
export default defineConfig({
plugins: [react(), tailwindcss()],
2026-07-25 15:55:59 +05:30
server: {
proxy: {
'/uploads': {
target: 'http://localhost:5002',
2026-07-25 15:55:59 +05:30
changeOrigin: true,
},
},
},
2026-06-16 13:08:58 +05:30
})