-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathvite.config.ts
127 lines (121 loc) · 3.6 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
121
122
123
124
125
126
127
import path from "node:path"
import dayjs from "dayjs"
import { defineConfig, loadEnv } from "vite"
import Uni from "@dcloudio/vite-plugin-uni"
import UniLayouts from "@uni-helper/vite-plugin-uni-layouts"
import UniPlatform from "@uni-helper/vite-plugin-uni-platform"
import UniManifest from "@uni-helper/vite-plugin-uni-manifest"
import UnoCSS from "unocss/vite"
import AutoImport from "unplugin-auto-import/vite"
import { visualizer } from "rollup-plugin-visualizer"
import ViteRestart from "vite-plugin-restart"
import viteImagemin from "vite-plugin-imagemin"
import { printBuildInfo } from "./src/utils/logger"
export default ({ command, mode }) => {
const UNI_PLATFORM = process.env.UNI_PLATFORM || "h5"
const env = loadEnv(mode, path.resolve(process.cwd(), "env"))
const { VITE_APP_PROXY } = env
// 打印构建环境信息
printBuildInfo(command, mode, UNI_PLATFORM, env)
return defineConfig({
envDir: "./env", // 自定义env目录
plugins: [
UniLayouts(),
UniPlatform(),
UniManifest(),
Uni(),
{
name: "fix-vite-plugin-vue",
configResolved(config) {
const plugin = config.plugins.find((p) => p.name === "vite:vue")
if (plugin && plugin.api && plugin.api.options) {
plugin.api.options.devToolsEnabled = false
}
},
},
UnoCSS(),
AutoImport({
imports: ["vue", "uni-app"],
dts: "src/types/auto-import.d.ts",
dirs: ["src/hooks"], // 自动导入 hooks
eslintrc: { enabled: true },
vueTemplate: true, // default false
}),
ViteRestart({
// 通过这个插件,在修改vite.config.js文件则不需要重新运行也生效配置
restart: ["vite.config.js"],
}),
// 图片压缩插件 (仅生产环境启用)
mode === "production" &&
viteImagemin({
gifsicle: {
optimizationLevel: 7,
interlaced: false,
},
optipng: {
optimizationLevel: 7,
},
mozjpeg: {
quality: 80,
},
pngquant: {
quality: [0.8, 0.9],
speed: 4,
},
svgo: {
plugins: [
{
name: "removeViewBox",
},
{
name: "removeEmptyAttrs",
active: false,
},
],
},
}),
// h5环境增加编译时间
UNI_PLATFORM === "h5" && {
name: "html-transform",
transformIndexHtml(html) {
return html.replace("%BUILD_DATE%", dayjs().format("YYYY-MM-DD HH:mm:ss"))
},
},
// 打包分析插件,h5 + 生产环境才弹出
UNI_PLATFORM === "h5" &&
mode === "production" &&
visualizer({
filename: "./node_modules/.cache/visualizer/stats.html",
open: true,
gzipSize: true,
brotliSize: true,
}),
],
define: {
__UNI_PLATFORM__: JSON.stringify(UNI_PLATFORM),
__VITE_APP_PROXY__: JSON.stringify(VITE_APP_PROXY),
},
css: {
postcss: {
plugins: [],
},
preprocessorOptions: {
scss: {
// https://github.com/vitejs/vite/issues/15474
additionalData: `@import "@/style/theme.scss";`,
sassOptions: {
quiet: true,
quietDeps: true,
charset: false,
sourceMap: false,
outputStyle: "compressed",
logger: {
warn: function () {},
debug: function () {},
},
},
},
},
},
})
}