init
This commit is contained in:
@@ -0,0 +1,147 @@
|
||||
/// <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}`), ''),
|
||||
// }
|
||||
// }
|
||||
|
||||
if (mode === 'development' && env.VITE_APP_BASE_API && env.VITE_APP_BASE_URL) {
|
||||
proxyObj[env.VITE_APP_BASE_API] = {
|
||||
target: env.VITE_APP_BASE_URL,
|
||||
changeOrigin: true,
|
||||
rewrite: path => path.replace(new RegExp(`^${env.VITE_APP_BASE_API}`), ''),
|
||||
}
|
||||
}
|
||||
|
||||
return {
|
||||
base: '/accidentportal/',
|
||||
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',
|
||||
// },
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user