-
-
Notifications
You must be signed in to change notification settings - Fork 161
/
Copy pathvite.config.ts
120 lines (118 loc) · 3.88 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
import { ConfigEnv, defineConfig, loadEnv } from 'vite'
import vue from '@vitejs/plugin-vue'
import AutoImport from 'unplugin-auto-import/vite' //自动导入
import Components from 'unplugin-vue-components/vite' //组件注册
import { NaiveUiResolver } from 'unplugin-vue-components/resolvers'
import { getRootPath, getSrcPath } from './build/config/getPath'
import vueJsx from '@vitejs/plugin-vue-jsx'
import UnoCSS from '@unocss/vite'
import terser from '@rollup/plugin-terser'
import { codecovVitePlugin } from '@codecov/vite-plugin'
// https://vitejs.dev/config/
/**! 不需要优化前端打包(如开启gzip) */
export default defineConfig(({ mode }: ConfigEnv) => {
// 获取当前环境的配置,如何设置第三个参数则加载所有变量,而不是以“VITE_”前缀的变量
const config = loadEnv(mode, process.cwd())
return {
resolve: {
alias: {
// 配置路径别名@
'@': getSrcPath(),
// 配置路径别名~(根路径)
'~': getRootPath()
}
},
css: {
preprocessorOptions: {
scss: {
api: 'modern-compiler',
additionalData: '@use "@/styles/scss/global/variable.scss" as *;' // 加载全局样式,使用scss特性
}
}
},
plugins: [
/**
* vue3.5.0已支持解构并具有响应式
* */
vue(),
vueJsx(), // 开启jsx功能
UnoCSS(), // 开启UnoCSS
AutoImport({
imports: [
'vue',
'vue-router',
'pinia',
{ 'naive-ui': ['useDialog', 'useMessage', 'useNotification', 'useLoadingBar', 'useModal'] }
],
dts: 'src/typings/auto-imports.d.ts'
}),
/**自动导入组件,但是不会自动导入jsx和tsx*/
Components({
dirs: ['src/components/**'], // 设置需要扫描的目录
resolvers: [NaiveUiResolver()],
dts: 'src/typings/components.d.ts'
}),
/** 代码覆盖率插件 */
codecovVitePlugin({
enableBundleAnalysis: process.env.CODECOV_TOKEN !== undefined,
bundleName: 'hula',
uploadToken: process.env.CODECOV_TOKEN
}),
/** 压缩代码 */
terser({
format: {
comments: false // 移除所有注释
},
compress: {
drop_console: true, // 移除 console.log
drop_debugger: true // 移除 debugger
}
})
],
build: {
cssCodeSplit: true, // 启用 CSS 代码拆分
minify: 'terser', // 指定使用哪种混淆器
// chunk 大小警告的限制(kb)
chunkSizeWarningLimit: 1200,
// 分包配置
rollupOptions: {
output: {
chunkFileNames: 'static/js/[name]-[hash].js', // 引入文件名的名称
entryFileNames: 'static/js/[name]-[hash].js', // 包的入口文件名称
assetFileNames: 'static/[ext]/[name]-[hash].[ext]', // 资源文件像 字体,图片等
// 最小化拆分包
manualChunks(id) {
if (id.includes('node_modules')) {
return 'invariable'
}
}
}
}
},
// Vite options tailored for Tauri development and only applied in `tauri dev` or `tauri build`
//
// 1. prevent vite from obscuring rust errors
clearScreen: false,
// 2. tauri expects a fixed port, fail if that port is not available
server: {
//配置跨域
proxy: {
'/api': {
// “/api” 以及前置字符串会被替换为真正域名
target: config.VITE_SERVICE_URL, // 请求域名
changeOrigin: true, // 是否跨域
rewrite: (path) => path.replace(/^\/api/, '')
}
},
hmr: true, // 热更新
cors: true, // 配置 CORS
host: '0.0.0.0',
port: 6130,
strictPort: true,
watch: {
// 3. tell vite to ignore watching `src-tauri`
ignored: ['**/src-tauri/**']
}
}
}
})