wsproxytest/vite.config.js
2025-06-16 19:15:46 -06:00

11 lines
136 B
JavaScript

export default {
server: {
proxy: {
"/api": {
target: `ws://localhost:8078`,
ws: true,
}
}
},
}