generated from Jonghakseo/chrome-extension-boilerplate-react-vite
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvite.config.ts
107 lines (97 loc) · 3.15 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
import { sentryVitePlugin } from "@sentry/vite-plugin"
/// <reference types="vitest" />
import react from "@vitejs/plugin-react"
import path, { resolve } from "path"
import { defineConfig } from "vite"
import addHmr from "./utils/plugins/add-hmr"
import customDynamicImport from "./utils/plugins/custom-dynamic-import"
import makeManifest from "./utils/plugins/make-manifest"
import watchRebuild from "./utils/plugins/watch-rebuild"
const rootDir = resolve(__dirname)
const srcDir = resolve(rootDir, "src")
const pagesDir = resolve(srcDir, "pages")
const assetsDir = resolve(srcDir, "assets")
const outDir = resolve(rootDir, "dist")
const publicDir = resolve(rootDir, "public")
const isDev = process.env.__DEV__ === "true"
const isProduction = !isDev
// ENABLE HMR IN BACKGROUND SCRIPT
const enableHmrInBackgroundScript = true
const cacheInvalidationKeyRef = { current: generateKey() }
export default defineConfig({
resolve: {
alias: {
"@root": rootDir,
"@src": srcDir,
"@assets": assetsDir,
"@pages": pagesDir,
},
},
plugins: [
makeManifest({
getCacheInvalidationKey,
}),
react(),
customDynamicImport(),
addHmr({ background: enableHmrInBackgroundScript, view: true }),
isDev && watchRebuild({ afterWriteBundle: regenerateCacheInvalidationKey }),
isProduction &&
sentryVitePlugin({
org: "shanxiao",
project: "canger-extension",
}),
],
publicDir,
build: {
outDir,
/** Can slow down build speed. */
// sourcemap: isDev,
minify: isProduction,
modulePreload: false,
reportCompressedSize: isProduction,
emptyOutDir: !isDev,
rollupOptions: {
input: {
panel: resolve(pagesDir, "panel", "index.html"),
content: resolve(pagesDir, "content", "index.ts"),
background: resolve(pagesDir, "background", "index.ts"),
contentStyle: resolve(pagesDir, "content", "style.scss"),
popup: resolve(pagesDir, "popup", "index.html"),
newtab: resolve(pagesDir, "newtab", "index.html"),
options: resolve(pagesDir, "options", "index.html"),
},
output: {
entryFileNames: "src/pages/[name]/index.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]`
},
},
onwarn(warning, warn) {
if (warning.code === "MODULE_LEVEL_DIRECTIVE" && warning.message.includes(`"use client"`)) {
return
}
warn(warning)
},
},
sourcemap: true,
},
test: {
globals: true,
environment: "jsdom",
include: ["**/*.test.ts", "**/*.test.tsx"],
setupFiles: "./test-utils/vitest.setup.js",
},
})
function getCacheInvalidationKey() {
return cacheInvalidationKeyRef.current
}
function regenerateCacheInvalidationKey() {
cacheInvalidationKeyRef.current = generateKey()
return cacheInvalidationKeyRef
}
function generateKey(): string {
return `${Date.now().toFixed()}`
}