-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.ts
55 lines (52 loc) · 1.56 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 { defineConfig } from 'vite';
import tsconfigPaths from 'vite-tsconfig-paths';
import reactSwc from '@vitejs/plugin-react-swc';
import { execSync } from 'child_process';
import { compression } from 'vite-plugin-compression2';
import checker from 'vite-plugin-checker';
import { ValidateEnv as validateEnv } from '@julr/vite-plugin-validate-env';
import envConfig from './env';
/* Get commit hash */
const commitHash = execSync('git rev-parse --short HEAD').toString();
export default defineConfig(({ mode }) => {
const isProd = mode === 'production';
return {
define: {
APP_COMMIT_HASH: JSON.stringify(commitHash),
},
plugins: [
isProd ? checker({
typescript: true,
eslint: {
lintCommand: 'eslint ./src',
},
// stylelint: {
// lintCommand: 'stylelint "./src/**/*.css"',
// },
}) : undefined,
reactSwc(),
tsconfigPaths(),
validateEnv(envConfig),
isProd ? compression() : undefined,
],
css: {
devSourcemap: isProd,
modules: {
scopeBehaviour: 'local',
localsConvention: 'camelCaseOnly',
},
},
envPrefix: 'APP_',
server: {
port: 3000,
strictPort: true,
},
build: {
outDir: 'build',
sourcemap: isProd,
},
test: {
environment: 'happy-dom',
},
};
});