初始化仓库
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
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,
|
||||
},
|
||||
},
|
||||
},
|
||||
})
|
||||
Reference in New Issue
Block a user