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': {
|
2026-08-08 10:55:01 +05:30
|
|
|
target: 'http://localhost:5002',
|
2026-07-25 15:55:59 +05:30
|
|
|
changeOrigin: true,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
2026-06-16 13:08:58 +05:30
|
|
|
})
|