-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.ts
46 lines (43 loc) · 1.36 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
/// <reference types="vitest" />
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
import path, { resolve } from 'path';
import { getCacheInvalidationKey, getPlugins } from './utils/vite';
const rootDir = resolve(__dirname);
const srcDir = resolve(rootDir, 'src');
const isDev = process.env.__DEV__ === 'true';
const isProduction = !isDev;
export default defineConfig({
resolve: {
alias: {
'@root': rootDir,
'@src': srcDir,
'@assets': resolve(srcDir, 'assets'),
},
},
plugins: [...getPlugins(isDev), react()],
publicDir: resolve(rootDir, 'public'),
build: {
outDir: resolve(rootDir, 'dist'),
/** Can slow down build speed. */
// sourcemap: isDev,
minify: isProduction,
modulePreload: false,
reportCompressedSize: isProduction,
emptyOutDir: !isDev,
rollupOptions: {
input: {
contentScripts: resolve(srcDir, 'contentScripts.ts'),
},
output: {
entryFileNames: 'src/[name].js',
chunkFileNames: isDev ? 'assets/js/[name].js' : 'assets/js/[name].[hash].js',
assetFileNames: assetInfo => {
const { name } = path.parse(assetInfo.name);
const assetFileName = name === 'contentStyle' ? `${name}${getCacheInvalidationKey()}` : name;
return `assets/[ext]/${assetFileName}.chunk.[ext]`;
},
},
},
},
});