Files

14 lines
243 B
JavaScript
Raw Permalink Normal View History

2026-03-12 11:26:49 +08:00
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [react()],
server: {
host: '0.0.0.0',
port: 3000,
proxy: {
'/api': 'http://localhost:4444'
}
}
})