31 lines
676 B
TypeScript
31 lines
676 B
TypeScript
import { defineConfig, loadEnv } from 'vite'
|
|
import vue from '@vitejs/plugin-vue'
|
|
import { resolve } from 'path'
|
|
|
|
// https://vite.dev/config/
|
|
export default defineConfig(({ mode }) => {
|
|
const env = loadEnv(mode, process.cwd(), '')
|
|
const apiBaseUrl = env.VITE_API_BASE_URL || 'http://localhost:8080'
|
|
|
|
return {
|
|
plugins: [vue()],
|
|
resolve: {
|
|
alias: {
|
|
'@': resolve(__dirname, 'src'),
|
|
},
|
|
},
|
|
server: {
|
|
port: parseInt(env.VITE_ADMIN_WEB_PORT || '5173', 10),
|
|
proxy: {
|
|
'/msg-platform': {
|
|
target: apiBaseUrl,
|
|
changeOrigin: true,
|
|
},
|
|
},
|
|
},
|
|
build: {
|
|
outDir: 'dist',
|
|
},
|
|
}
|
|
})
|