2026-07-07 15:06:33 +08:00
|
|
|
import { defineConfig } from 'vite'
|
|
|
|
|
import vue from '@vitejs/plugin-vue'
|
|
|
|
|
|
|
|
|
|
export default defineConfig({
|
|
|
|
|
plugins: [vue()],
|
|
|
|
|
server: {
|
2026-07-07 17:08:46 +08:00
|
|
|
port: 5174,
|
|
|
|
|
proxy: {
|
|
|
|
|
'/api': {
|
|
|
|
|
target: process.env.VITE_API_PROXY_TARGET || 'http://localhost:8080',
|
|
|
|
|
changeOrigin: true
|
|
|
|
|
}
|
|
|
|
|
}
|
2026-07-07 15:06:33 +08:00
|
|
|
}
|
|
|
|
|
})
|