-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvite.config.ts
26 lines (24 loc) · 1001 Bytes
/
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
import { reactRouter } from '@react-router/dev/vite'
import tailwindcss from '@tailwindcss/vite'
import { resolve } from 'pathe'
import { env, isProduction } from 'std-env'
import { defineConfig } from 'vite'
import tsconfigPaths from 'vite-tsconfig-paths'
// Check if the current environment is CI or test environment
const isTestOrStorybook = env.VITEST || process.argv[1]?.includes('storybook')
export default defineConfig(({ isSsrBuild }) => ({
envPrefix: 'VITE_' /* Prefix for environment variables */,
plugins: [tailwindcss(), !isTestOrStorybook && reactRouter(), tsconfigPaths()],
server: { port: {{ port_number }}, host: false },
publicDir: resolve('public'),
build: {
manifest: true,
emptyOutDir: true,
chunkSizeWarningLimit: 1024 * 4,
reportCompressedSize: false,
minify: isProduction,
rollupOptions: isSsrBuild ? { input: './server/app.ts' } : undefined,
terserOptions: { format: { comments: false } },
},
esbuild: { legalComments: 'none' },
}))