Files
yunrui_asset/frontend/vite.config.js
T

24 lines
452 B
JavaScript
Raw Normal View History

2025-12-18 10:45:13 +08:00
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
export default defineConfig({
plugins: [react()],
server: {
2025-12-20 10:37:26 +08:00
host: '0.0.0.0',
2025-12-18 10:45:13 +08:00
port: 3000,
proxy: {
'/api': {
target: 'http://localhost:8000',
2025-12-18 10:45:13 +08:00
changeOrigin: true
},
'/uploads': {
target: 'http://localhost:8000',
changeOrigin: true
2025-12-18 10:45:13 +08:00
}
}
},
build: {
outDir: 'dist',
sourcemap: true
}
});