-
Notifications
You must be signed in to change notification settings - Fork 18
/
vite.config.ts
50 lines (49 loc) · 1.07 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
/// <reference types="vitest" />
import react from '@vitejs/plugin-react-swc'
import { resolve } from 'path'
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'],
},
},
},
},
})