2026-07-10 18:55:55 +08:00
|
|
|
/// <reference types="vitest" />
|
|
|
|
|
|
|
|
|
|
import type { ConfigEnv, UserConfig } from 'vite'
|
|
|
|
|
import { resolve } from 'node:path'
|
|
|
|
|
import * as process from 'node:process'
|
|
|
|
|
import { fileURLToPath } from 'node:url'
|
|
|
|
|
import { loadEnv } from 'vite'
|
|
|
|
|
import { createVitePlugins } from './plugins'
|
|
|
|
|
import { OUTPUT_DIR } from './plugins/constants'
|
|
|
|
|
|
|
|
|
|
const baseSrc = fileURLToPath(new URL('./src', import.meta.url))
|
|
|
|
|
// https://vitejs.dev/config/
|
|
|
|
|
export default ({ mode }: ConfigEnv): UserConfig => {
|
|
|
|
|
const env = loadEnv(mode, process.cwd())
|
|
|
|
|
const proxyObj = {}
|
|
|
|
|
|
|
|
|
|
// if (mode === 'development' && env.VITE_APP_BASE_API_DEV && env.VITE_APP_BASE_URL_DEV) {
|
|
|
|
|
// proxyObj[env.VITE_APP_BASE_API_DEV] = {
|
|
|
|
|
// target: env.VITE_APP_BASE_URL_DEV,
|
|
|
|
|
// changeOrigin: true,
|
|
|
|
|
// rewrite: path => path.replace(new RegExp(`^${env.VITE_APP_BASE_API_DEV}`), ''),
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
|
2026-07-10 21:10:17 +08:00
|
|
|
if (mode === 'development' && env.VITE_APP_BASE_API_DEV && env.VITE_APP_BASE_URL_DEV) {
|
|
|
|
|
proxyObj[env.VITE_APP_BASE_API_DEV] = {
|
|
|
|
|
target: env.VITE_APP_BASE_URL_DEV,
|
2026-07-10 18:55:55 +08:00
|
|
|
changeOrigin: true,
|
2026-07-10 21:10:17 +08:00
|
|
|
// 浏览器请求 /api/xxx,转发给后端时补上域名前缀 -> /accidentportal/api/xxx
|
|
|
|
|
rewrite: path => path.replace(new RegExp(`^${env.VITE_APP_BASE_API_DEV}`), '/accidentportal/api'),
|
2026-07-10 18:55:55 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return {
|
2026-07-10 21:10:17 +08:00
|
|
|
base: mode === 'development' ? '/' : '/accidentportal/',
|
2026-07-10 18:55:55 +08:00
|
|
|
plugins: createVitePlugins(env),
|
|
|
|
|
resolve: {
|
|
|
|
|
alias: [
|
|
|
|
|
{
|
|
|
|
|
find: 'dayjs',
|
|
|
|
|
replacement: 'dayjs/esm',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
find: /^dayjs\/locale/,
|
|
|
|
|
replacement: 'dayjs/esm/locale',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
find: /^dayjs\/plugin/,
|
|
|
|
|
replacement: 'dayjs/esm/plugin',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
find: 'vue-i18n',
|
|
|
|
|
replacement: mode === 'development' ? 'vue-i18n/dist/vue-i18n.esm-browser.js' : 'vue-i18n/dist/vue-i18n.esm-bundler.js',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
find: /^ant-design-vue\/es$/,
|
|
|
|
|
replacement: 'ant-design-vue/es',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
find: /^ant-design-vue\/dist$/,
|
|
|
|
|
replacement: 'ant-design-vue/dist',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
find: /^ant-design-vue\/lib$/,
|
|
|
|
|
replacement: 'ant-design-vue/es',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
find: /^ant-design-vue$/,
|
|
|
|
|
replacement: 'ant-design-vue/es',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
find: 'lodash',
|
|
|
|
|
replacement: 'lodash-es',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
find: '~@',
|
|
|
|
|
replacement: baseSrc,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
find: '~',
|
|
|
|
|
replacement: baseSrc,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
find: '@',
|
|
|
|
|
replacement: baseSrc,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
find: '~#',
|
|
|
|
|
replacement: resolve(baseSrc, './enums'),
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
build: {
|
|
|
|
|
chunkSizeWarningLimit: 4096,
|
|
|
|
|
outDir: OUTPUT_DIR,
|
|
|
|
|
rollupOptions: {
|
|
|
|
|
output: {
|
|
|
|
|
advancedChunks: {
|
|
|
|
|
groups: [
|
|
|
|
|
{
|
|
|
|
|
test: /[\\/]node_modules[\\/](vue|vue-router|pinia|vue-i18n|@vueuse[\\/]core)[\\/]/,
|
|
|
|
|
name: 'vue',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
test: /[\\/]node_modules[\\/](ant-design-vue|@ant-design[\\/]icons-vue|dayjs)[\\/]/,
|
|
|
|
|
name: 'antd',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
rolldownOptions: {
|
|
|
|
|
output: {
|
|
|
|
|
advancedChunks: {
|
|
|
|
|
groups: [
|
|
|
|
|
{
|
|
|
|
|
test: /[\\/]node_modules[\\/](vue|vue-router|pinia|vue-i18n|@vueuse[\\/]core)[\\/]/,
|
|
|
|
|
name: 'vue',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
test: /[\\/]node_modules[\\/](ant-design-vue|@ant-design[\\/]icons-vue|dayjs)[\\/]/,
|
|
|
|
|
name: 'antd',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
server: {
|
|
|
|
|
port: 3001,
|
|
|
|
|
proxy: {
|
|
|
|
|
...proxyObj,
|
|
|
|
|
// [env.VITE_APP_BASE_API]: {
|
|
|
|
|
// target: env.VITE_APP_BASE_URL,
|
|
|
|
|
// // 如果你是https接口,需要配置这个参数
|
|
|
|
|
// // secure: false,
|
|
|
|
|
// changeOrigin: true,
|
|
|
|
|
// rewrite: path => path.replace(new RegExp(`^${env.VITE_APP_BASE_API}`), ''),
|
|
|
|
|
// },
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
// test: {
|
|
|
|
|
// globals: true,
|
|
|
|
|
// environment: 'jsdom',
|
|
|
|
|
// },
|
|
|
|
|
}
|
|
|
|
|
}
|