-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathvite.config.ts
117 lines (116 loc) · 2.64 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
import { defineConfig } from "vite";
import vue from "@vitejs/plugin-vue";
import path from "path";
import viteCompression from "vite-plugin-compression";
import { ViteImageOptimizer } from "vite-plugin-image-optimizer";
import { fontConfig } from "./src/config/font";
export default defineConfig({
base: "/",
build: {
outDir: "dist",
assetsDir: "assets",
minify: "terser",
sourcemap: false,
chunkSizeWarningLimit: 1500,
terserOptions: {
compress: {
drop_console: true,
drop_debugger: true,
pure_funcs: ["console.log"],
},
format: {
comments: /@license/i,
},
},
rollupOptions: {
output: {
manualChunks: {
vendor: ["vue", "vue-router"],
},
chunkFileNames: "assets/js/[name]-[hash].js",
entryFileNames: "assets/js/[name]-[hash].js",
assetFileNames: "assets/[ext]/[name]-[hash].[ext]",
},
},
cssCodeSplit: true,
cssMinify: true,
},
plugins: [
vue(),
viteCompression({
verbose: true,
disable: false,
threshold: 10240,
algorithm: "gzip",
ext: ".gz",
}),
ViteImageOptimizer({
test: /\.(jpe?g|png|gif|svg)$/i,
exclude: undefined,
include: undefined,
includePublic: true,
logStats: true,
ansiColors: true,
svg: {
multipass: true,
plugins: [
{
name: "preset-default",
params: {
overrides: {
removeViewBox: false,
removeEmptyAttrs: false,
},
},
},
],
},
png: {
quality: 80,
},
jpeg: {
quality: 80,
},
jpg: {
quality: 80,
},
tiff: {
quality: 80,
},
gif: undefined,
webp: {
quality: 80,
},
avif: {
quality: 80,
},
}),
],
resolve: {
alias: {
"@": path.resolve(__dirname, "src"),
},
},
server: {
proxy: {
"/rss.xml": {
target: "https://www.mmm.sd",
changeOrigin: true,
rewrite: (path) => path + '?t=' + Date.now(),
headers: {
Accept: "application/xml, text/xml, */*",
"User-Agent": "Mozilla/5.0",
"Cache-Control": "no-cache",
"Pragma": "no-cache"
},
},
},
},
define: {
__VUE_OPTIONS_API__: true,
__VUE_PROD_DEVTOOLS__: false,
"process.env.VITE_FONT_URL": JSON.stringify(fontConfig.url),
"process.env.VITE_FONT_ENABLED": JSON.stringify(fontConfig.enabled),
"process.env.VITE_FONT_PRELOAD": JSON.stringify(fontConfig.preload),
},
});