Files
dukang/apps/admin-web/vite.config.ts
T
2026-07-01 08:27:26 +08:00

11 lines
217 B
TypeScript

import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
export default defineConfig({
plugins: [react()],
server: {
port: 5175,
proxy: { '/api': 'http://localhost:3000' },
},
});