auto_score/AES-front/vite.config.js

64 lines
1.6 KiB
JavaScript
Raw Normal View History

2024-12-29 20:44:44 +08:00
import { defineConfig, loadEnv } from 'vite'
import { convertEnv, getSrcPath, getRootPath } from './build/utils'
import { createVitePlugins } from './build/plugin'
import { OUTPUT_DIR, PROXY_CONFIG } from './build/constant'
export default defineConfig(({ command, mode }) => {
const srcPath = getSrcPath()
const rootPath = getRootPath()
const isBuild = command === 'build'
const env = loadEnv(mode, process.cwd())
const viteEnv = convertEnv(env)
const { VITE_PORT, VITE_PUBLIC_PATH, VITE_USE_PROXY, VITE_BASE_API } = viteEnv
return {
base: VITE_PUBLIC_PATH || '/',
css: {
preprocessorOptions: {
scss: {
api: 'modern-compiler'
}
}
},
2024-12-29 20:44:44 +08:00
resolve: {
alias: {
'~': rootPath,
'@': srcPath,
},
},
plugins: createVitePlugins(viteEnv, isBuild),
server: {
host: '0.0.0.0',
port: VITE_PORT,
open: true,
proxy: VITE_USE_PROXY
? {
[VITE_BASE_API]: PROXY_CONFIG[VITE_BASE_API],
'/oj': PROXY_CONFIG['/oj'],
'/ws': PROXY_CONFIG['/ws'],
}
: undefined,
},
build: {
target: 'es2015',
outDir: OUTPUT_DIR || 'dist',
reportCompressedSize: false, // 启用/禁用 gzip 压缩大小报告
chunkSizeWarningLimit: 1024, // chunk 大小警告的限制(单位kb)
rollupOptions: {
output: {
manualChunks: {
vendor: ['vue', 'vue-router', 'axios'],
crypto: ['crypto-js'],
pinia: ['pinia'],
codemirror: ['codemirror'],
},
},
},
},
}
})