17 lines
362 B
TypeScript
17 lines
362 B
TypeScript
import { defineConfig } from 'vite';
|
||
import react from '@vitejs/plugin-react';
|
||
|
||
export default defineConfig({
|
||
plugins: [react()],
|
||
server: {
|
||
port: 5173,
|
||
proxy: {
|
||
// Gateway 默认监听 8180(与 config.Load() 的 PORT 默认值一致)
|
||
'/api': {
|
||
target: 'http://localhost:8180',
|
||
changeOrigin: true
|
||
}
|
||
}
|
||
}
|
||
});
|