-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.ts
51 lines (49 loc) · 1.08 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
/// <reference types="vitest" />
import { resolve } from "node:path";
import react from "@vitejs/plugin-react-swc";
import { defineConfig } from "vite";
import { compression } from "vite-plugin-compression2";
import { qrcode } from "vite-plugin-qrcode";
// https://vitejs.dev/config/
export default defineConfig({
resolve: {
alias: {
"@": resolve(__dirname, "./src"),
},
},
envDir: "./env/",
plugins: [
react(),
qrcode(),
compression({
algorithm: "gzip",
exclude: [/\.(br)$/, /\.(gz)$/],
}),
compression({
algorithm: "brotliCompress",
exclude: [/\.(br)$/, /\.(gz)$/],
}),
],
test: {
globals: true,
watch: false,
environment: "happy-dom",
setupFiles: "./src/setup-test.ts",
},
build: {
sourcemap: true,
target: "esnext",
minify: true,
cssTarget: "esnext",
cssMinify: true,
cssCodeSplit: true,
modulePreload: true,
rollupOptions: {
output: {
manualChunks: {
"vendor-react": ["react", "react/jsx-runtime", "react-dom"],
},
},
},
},
});