19 lines
314 B
JavaScript
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
|
|
}
|
|
}
|
|
}
|
|
})
|