Files
cc-connect/web/vite.config.ts
2026-06-02 23:14:41 +08:00

28 lines
526 B
TypeScript

import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import path from 'path'
export default defineConfig({
plugins: [react()],
resolve: {
alias: {
'@': path.resolve(__dirname, './src'),
},
},
server: {
port: 9821,
proxy: {
'/api': {
target: 'http://localhost:9820',
changeOrigin: true,
timeout: 45000,
},
'/bridge': {
target: 'http://localhost:9810',
changeOrigin: true,
ws: true,
},
},
},
})