forked from XiangZi7/KMMusicPlayer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.ts
97 lines (95 loc) · 3.48 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
import { fileURLToPath, URL } from 'node:url'
import AutoImport from 'unplugin-auto-import/vite'
import Components from 'unplugin-vue-components/vite'
import IconsResolver from 'unplugin-icons/resolver' // 集成图标集
import Icons from 'unplugin-icons/vite'
import { defineConfig } from 'vite'
import { visualizer } from 'rollup-plugin-visualizer'
import vue from '@vitejs/plugin-vue'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
vue(),
AutoImport({
imports: ['vue', 'vue-router', 'pinia'],
dirs: ['src/utils/**', 'src/stores/modules/**', 'src/hooks/**'],
dts: 'src/auto-import/imports.d.ts',
eslintrc: {
enabled: true,
filepath: 'src/auto-import/eslintrc-auto-import.json',
},
}),
Components({
dirs: ['src/components'],
dts: 'src/auto-import/components.d.ts',
resolvers: [
// 集成图标集
IconsResolver({
prefix: 'icon', // 私有前缀
}),
],
}),
Icons({
autoInstall: true, // 自动安装所需图标集
}),
visualizer({
open: true, //build后,是否自动打开分析页面,默认false
gzipSize: true, //是否分析gzip大小
brotliSize: true, //是否分析brotli大小
//filename: 'stats.html'//分析文件命名
}),
],
base: './', // 在生产中服务时的基本公共路径
publicDir: 'public', // 静态资源服务的文件夹, 默认"public"
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url)),
},
},
// 本地运行配置
server: {
host: '0.0.0.0', // 指定服务器主机名 0.0.0.0 可以看见network 通过ip访问
port: 3777, // 指定服务器端口
// open: true, // 在服务器启动时自动在浏览器中打开应用程序
strictPort: false, // 设置为false时,若端口被占用会尝试下一个可用端口, 而不是直接退出
cors: true, // 为开发服务器配置 CORS, 默认启用并允许任何源
proxy: {
// 为开发服务器配置自定义代理规则
'/map-api': {
target: 'https://restapi.amap.com', // 代理接口
changeOrigin: true,
rewrite: (_path) => _path.replace(/^\/map-api/, ''),
},
},
},
// 打包配置
build: {
rollupOptions: {
// 静态资源分类打包
output: {
chunkFileNames: 'static/js/[name]-[hash].js',
entryFileNames: 'static/js/[name]-[hash].js',
assetFileNames: 'static/[ext]/[name]-[hash].[ext]',
},
},
target: 'modules', // 设置最终构建的浏览器兼容目标。modules:支持原生 ES 模块的浏览器
outDir: 'dist', // 指定输出路径
assetsDir: 'assets', // 指定生成静态资源的存放路径
cssCodeSplit: true, // 启用/禁用CSS代码拆分,如果禁用,整个项目的所有CSS将被提取到一个CSS文件中,默认true
sourcemap: false, // 构建后是否生成 source map 文件
minify: 'terser', // 混淆器,terser构建后文件体积更小
write: true, // 设置为 false 来禁用将构建后的文件写入磁盘
emptyOutDir: true, // 默认情况下,若 outDir 在 root 目录下,则 Vite 会在构建时清空该目录。
chunkSizeWarningLimit: 500, // chunk 大小警告的限制
terserOptions: {
compress: {
drop_console: true,
drop_debugger: true,
},
}, // 去除 console debugger
},
// esbuild: {
// // 取消consol
// drop: ['console', 'debugger'],
// },
})