Files
2026-08-01 23:09:49 +08:00

13 lines
225 B
TypeScript

import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [react()],
server: {
port: 5177,
proxy: {
'/api': 'http://127.0.0.1:8787',
},
},
})