28 lines
526 B
TypeScript
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,
|
|
},
|
|
},
|
|
},
|
|
})
|