This commit is contained in:
jze9
2026-07-21 16:11:09 +05:00
commit 78862296c4
94 changed files with 6090 additions and 0 deletions

20
frontend/vite.config.ts Normal file
View File

@@ -0,0 +1,20 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import tailwindcss from '@tailwindcss/vite'
// https://vite.dev/config/
export default defineConfig({
plugins: [react(), tailwindcss()],
server: {
host: true,
port: 5173,
// Dev-only: this server never leaves the docker-compose network / localhost.
allowedHosts: true,
proxy: {
'/api': {
target: 'http://backend:8000',
changeOrigin: true,
},
},
},
})