-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.js
77 lines (76 loc) · 2.23 KB
/
vite.config.js
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
import { defineConfig } from "vite";
import vue from "@vitejs/plugin-vue";
import postcssConfig from "./postcss.config";
import { visualizer } from "rollup-plugin-visualizer"; // 打包体积分析插件
// 有空换成 unplugin-imagemin
// import viteImagemin from "vite-plugin-imagemin"; // 图片压缩插件
import { createHtmlPlugin } from "vite-plugin-html"; // 生成 html 插件
import externalGlobals from "rollup-plugin-external-globals"; // 导出全局变量
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
vue(),
visualizer({ open: false }),
createHtmlPlugin({
inject: {
data: {
script: ``,
},
},
}),
// viteImagemin({
// gifsicle: {
// optimizationLevel: 7,
// interlaced: false,
// },
// // 无损压缩配置,无损压缩下图片质量不会变差
// optipng: {
// optimizationLevel: 7,
// },
// mozjpeg: {
// quality: 20,
// },
// // 有损压缩配置,有损压缩下图片质量可能会变差
// pngquant: {
// quality: [0.8, 0.9],
// },
// // svg 优化
// svgo: {
// plugins: [
// {
// name: "removeViewBox",
// },
// {
// name: "removeEmptyAttrs",
// active: false,
// },
// ],
// },
// }),
],
resolve: {
alias: {
"@": "/src/client",
},
},
esbuild: {
drop: ["console", "debugger"],
},
build: {
target: "modules", // 默认值是一个 Vite 特有的值:'modules' https://cn.vitejs.dev/config/build-options.html#build-target
minify: "esbuild", // 默认为'esbuild',boolean | 'terser' | 'esbuild' | 'gzip' | 'both'
rollupOptions: {
output: {
chunkFileNames: "js/[name]-[hash].js", // 引入文件名的名称
entryFileNames: "js/[name]-[hash].js", // 包的入口文件名称
assetFileNames: "[ext]/[name]-[hash].[ext]", // 资源文件像 字体,图片等
manualChunks: {},
},
// 告诉打包工具 在external配置的 都是外部依赖项 不需要打包
plugins: [externalGlobals({})],
},
},
css: {
postcss: postcssConfig,
},
});