-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvite.config.js
45 lines (44 loc) · 871 Bytes
/
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
import viteImageMin from 'vite-plugin-imagemin'
import { fileURLToPath, URL } from 'node:url'
export default () => {
return {
base: './',
plugins: [
viteImageMin({
gifsicle: {
optimizationLevel: 3,
interlaced: false,
},
optipng: {
optimizationLevel: 7,
},
mozjpeg: {
quality: 80,
},
pngquant: {
quality: [0.8, 0.9],
speed: 4,
},
svgo: {
plugins: [
{
name: 'removeViewBox',
},
{
name: 'removeEmptyAttrs',
active: false,
},
],
},
webp: {
quality: 80
}
}),
],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
}
}
}