mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-02 22:37:32 +00:00
13 lines
232 B
TypeScript
13 lines
232 B
TypeScript
import { defineConfig } from 'vite';
|
|
|
|
export default defineConfig({
|
|
server: {
|
|
proxy: {
|
|
// Proxy websocket requests to the server
|
|
'/': {
|
|
target: 'ws://127.0.0.1:8188',
|
|
ws: true,
|
|
}
|
|
}
|
|
}
|
|
}); |