mirror of
https://github.com/CJackHwang/ds2api.git
synced 2026-05-05 08:55:28 +08:00
24 lines
531 B
JavaScript
24 lines
531 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,
|
|
},
|
|
})
|