mosh-helpdesk/client/vite.config.ts

18 lines
367 B
TypeScript
Raw Normal View History

2026-02-09 18:55:29 +01:00
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
2026-02-11 20:21:34 +01:00
import tailwindcss from '@tailwindcss/vite'
2026-02-09 18:55:29 +01:00
// https://vite.dev/config/
export default defineConfig({
2026-02-11 20:21:34 +01:00
plugins: [tailwindcss(), react()],
2026-02-09 18:55:29 +01:00
server: {
port: 5173,
proxy: {
'/api': {
target: 'http://localhost:3000',
changeOrigin: true,
},
},
},
})