-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.ts
55 lines (53 loc) · 1.39 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
import { resolve } from "path";
import { defineConfig, loadEnv, ConfigEnv, UserConfig } from "vite";
import reactRefresh from "@vitejs/plugin-react-refresh";
import viteCompression from "vite-plugin-compression";
import { createStyleImportPlugin, AntdResolve } from "vite-plugin-style-import";
export default defineConfig((mode: ConfigEnv): UserConfig => {
const configEnv = loadEnv(mode.mode, "./");
return {
resolve: {
alias: {
"@": resolve(__dirname, "./src"),
},
},
css: {
preprocessorOptions: {
less: {
javascriptEnabled: true,
},
},
},
server: {
host: configEnv.VITE_HOST,
port: Number(configEnv.VITE_PORT),
https: false,
},
plugins: [
reactRefresh(),
createStyleImportPlugin({ resolves: [AntdResolve()] }),
viteCompression({
verbose: true,
disable: false,
threshold: 10240,
algorithm: "gzip",
ext: ".gz",
}),
],
esbuild: {
pure:
configEnv.VITE_HOST === "production" ? ["console.log", "debugger"] : [],
},
build: {
outDir: configEnv.VITE_OUTPUT_DIR,
minify: "esbuild",
rollupOptions: {
output: {
chunkFileNames: "js/[name]-[hash].js",
entryFileNames: "js/[name]-[hash].js",
assetFileNames: "[ext]/[name]-[hash].[ext]",
},
},
},
};
});