Files
zp1/frontend/vite.config.js
2026-04-26 11:00:59 +08:00

19 lines
314 B
JavaScript

import { defineConfig } from 'vite'
export default defineConfig({
server: {
host: '0.0.0.0',
port: 3000,
proxy: {
'/ws': {
target: 'ws://localhost:8080',
ws: true
},
'/api': {
target: 'http://localhost:8081',
changeOrigin: true
}
}
}
})