-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathvite.config.ts
106 lines (92 loc) · 3.3 KB
/
vite.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
import process from 'node:process';
import { URL, fileURLToPath } from 'node:url';
import { defineConfig, loadEnv } from 'vite';
import { createViteProxy, getBuildTime } from './build/config';
import { setupVitePlugins } from './build/plugins';
// https://vitejs.dev/config/
export default defineConfig(configEnv => {
const viteEnv = loadEnv(configEnv.mode, process.cwd()) as unknown as Env.ImportMeta;
const buildTime = getBuildTime();
const enableProxy = configEnv.command === 'serve' && !configEnv.isPreview;
return {
base: viteEnv.VITE_BASE_URL,
build: {
rollupOptions: {
output: {
assetFileNames: chunkInfo => {
const name = chunkInfo.names[0];
if (name?.endsWith('.css')) {
return 'css/[name]-[hash].css';
}
const imgExts = ['png', 'jpg', 'jpeg', 'gif', 'svg', 'webp'];
if (imgExts.some(ext => name?.endsWith(`.${ext}`))) {
return 'images/[name]-[hash].[ext]';
}
if (name?.endsWith('.js')) {
return 'js/[name]-[hash].js';
}
return 'assets/[name]-[hash].[ext]';
},
chunkFileNames: chunkInfo => {
// 检查文件路径,如果是 pages 目录下的文件,则修改文件名和路径
const filePath = chunkInfo.facadeModuleId;
if (filePath) {
// 提取文件的父文件夹作为文件名
if (filePath.includes('/src/pages/')) {
// 提取文件的父文件夹作为文件名
const pageName = filePath.split('/src/pages/')[1];
// 替换 [name] 为 name 因为vite不支持
const newPath = pageName.replace(/\[([^\]]+)\]/g, '$1');
const path = newPath.slice(0, newPath.lastIndexOf('/'));
return `js/pages/${path}/[name]-[hash].js`;
} else if (filePath.includes('/src/components/')) {
return `js/components/[name]-[hash].js`;
}
}
return 'js/[name]-[hash].js'; // 默认处理方式
},
manualChunks: {
animate: ['motion'],
antd: ['antd', '@ant-design/v5-patch-for-react-19'],
axios: ['axios'],
il8n: ['react-i18next', 'i18next'],
react: ['react', 'react-dom', 'react-error-boundary'],
reactRouter: ['react-router-dom'],
redux: ['react-redux', '@reduxjs/toolkit'],
sa: ['@sa/axios', '@sa/color', '@sa/hooks', '@sa/materials', '@sa/utils']
}
}
}
},
css: {
preprocessorOptions: {
scss: {
additionalData: `@use "@/styles/scss/global.scss" as *;`,
api: 'modern-compiler'
}
}
},
define: {
BUILD_TIME: JSON.stringify(buildTime)
},
plugins: setupVitePlugins(viteEnv, buildTime),
preview: {
port: 9725
},
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url)),
'~': fileURLToPath(new URL('./', import.meta.url))
}
},
server: {
host: '0.0.0.0',
open: true,
port: 9527,
proxy: createViteProxy(viteEnv, enableProxy),
warmup: {
clientFiles: ['./index.html', './src/{pages,components}/*']
}
}
};
});