21 lines
513 B
TypeScript
21 lines
513 B
TypeScript
|
|
import { defineConfig } from 'vite'
|
||
|
|
import react from '@vitejs/plugin-react'
|
||
|
|
|
||
|
|
// https://vitejs.dev/config/
|
||
|
|
export default defineConfig({
|
||
|
|
plugins: [react()],
|
||
|
|
server: {
|
||
|
|
host: '0.0.0.0', // Bind to all interfaces (IPv4 and IPv6)
|
||
|
|
port: 3003,
|
||
|
|
strictPort: false, // Allow fallback to next available port
|
||
|
|
proxy: {
|
||
|
|
'/api': {
|
||
|
|
target: 'http://127.0.0.1:8000', // Use 127.0.0.1 instead of localhost
|
||
|
|
changeOrigin: true,
|
||
|
|
secure: false,
|
||
|
|
ws: true,
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
})
|