30 lines
645 B
TypeScript
30 lines
645 B
TypeScript
|
|
import { defineConfig, loadEnv } from 'vite'
|
||
|
|
import vue from '@vitejs/plugin-vue'
|
||
|
|
import { fileURLToPath, URL } from 'node:url'
|
||
|
|
|
||
|
|
export default defineConfig(({ mode }) => {
|
||
|
|
const env = loadEnv(mode, process.cwd(), '')
|
||
|
|
return {
|
||
|
|
plugins: [vue()],
|
||
|
|
resolve: {
|
||
|
|
alias: {
|
||
|
|
'@': fileURLToPath(new URL('./src', import.meta.url)),
|
||
|
|
},
|
||
|
|
},
|
||
|
|
server: {
|
||
|
|
host: '0.0.0.0',
|
||
|
|
port: 5173,
|
||
|
|
proxy: {
|
||
|
|
'/api': {
|
||
|
|
target: env.VITE_API_PROXY || 'http://localhost:8000',
|
||
|
|
changeOrigin: true,
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
build: {
|
||
|
|
target: 'es2020',
|
||
|
|
outDir: 'dist',
|
||
|
|
},
|
||
|
|
}
|
||
|
|
})
|