mirror of
https://github.com/CJackHwang/ds2api.git
synced 2026-05-05 00:45:29 +08:00
27 lines
567 B
JavaScript
27 lines
567 B
JavaScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
export default defineConfig({
|
|
plugins: [
|
|
react(),
|
|
],
|
|
server: {
|
|
port: 5173,
|
|
proxy: {
|
|
'/admin': {
|
|
target: 'http://localhost:5001',
|
|
changeOrigin: true,
|
|
},
|
|
'/v1': {
|
|
target: 'http://localhost:5001',
|
|
changeOrigin: true,
|
|
},
|
|
},
|
|
},
|
|
build: {
|
|
outDir: '../static/admin',
|
|
emptyOutDir: true,
|
|
},
|
|
base: '/webui/',
|
|
})
|