-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.ts
42 lines (37 loc) · 1.03 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
import path from 'path';
import react from '@vitejs/plugin-react';
import { defineConfig } from 'vite';
import { VitePWA } from 'vite-plugin-pwa';
import { codecovVitePlugin } from "@codecov/vite-plugin";
import autoprefixer from 'autoprefixer';
// https://vitejs.dev/config/
export default defineConfig({
resolve: {
alias: {
'@app': path.resolve(__dirname, './src/')
}
},
build: {
chunkSizeWarningLimit: 2000,
},
plugins: [
...
(process.env.NODE_ENV === 'production' ? [VitePWA({ injectRegister: null })] : []),
react({}),
codecovVitePlugin({
enableBundleAnalysis: process.env.CODECOV_TOKEN !== undefined,
bundleName: "CodeSlide",
uploadToken: process.env.CODECOV_TOKEN,
}),
],
css: {
postcss: {
plugins: [
autoprefixer({}) // add options if needed
],
}
},
define: {
__APP_VERSION__: JSON.stringify(process.env.npm_package_version),
}
});