Files

17 lines
351 B
JavaScript
Raw Permalink Normal View History

2026-06-16 15:07:59 -04:00
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
2026-06-17 16:02:04 -04:00
import tailwindcss from '@tailwindcss/vite'
2026-06-16 15:07:59 -04:00
// https://vite.dev/config/
export default defineConfig({
2026-06-17 16:02:04 -04:00
plugins: [react(), tailwindcss()],
server: {
proxy: {
'/api': {
target: 'http://localhost:8000',
changeOrigin: true,
},
},
},
2026-06-16 15:07:59 -04:00
})