Spaces:
Sleeping
Sleeping
File size: 686 Bytes
03defc2 03a7eb9 03defc2 03a7eb9 03defc2 03a7eb9 03defc2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import tailwindcss from '@tailwindcss/vite'
export default defineConfig({
plugins: [react(), tailwindcss()],
server: {
port: 3000,
proxy: {
'/reset': { target: 'http://localhost:7860', changeOrigin: true },
'/step': { target: 'http://localhost:7860', changeOrigin: true },
'/state': { target: 'http://localhost:7860', changeOrigin: true },
'/health': { target: 'http://localhost:7860', changeOrigin: true },
'/fix': { target: 'http://localhost:7860', changeOrigin: true },
'/run_raw': { target: 'http://localhost:7860', changeOrigin: true },
},
},
})
|