-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.ts
110 lines (103 loc) · 3.51 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
108
109
110
import { vanillaExtractPlugin } from "@vanilla-extract/vite-plugin";
import react from "@vitejs/plugin-react";
import path, { resolve } from "path";
import { PreRenderedChunk } from "rollup";
import copy from "rollup-plugin-copy";
import { defineConfig } from "vite";
import manifest from "./manifest";
import addHmr from "./utils/plugins/add-hmr";
import customDynamicImport from "./utils/plugins/custom-dynamic-import";
import makeManifest from "./utils/plugins/make-manifest";
const root = resolve(__dirname, "src");
const pagesDir = resolve(root, "pages");
const assetsDir = resolve(root, "assets");
const outDir = resolve(__dirname, "dist");
const publicDir = resolve(__dirname, "public");
const isDev = process.env.__DEV__ === "true";
const isProduction = !isDev;
// ENABLE HMR IN BACKGROUND SCRIPT
const enableHmrInBackgroundScript = true;
export default defineConfig({
resolve: {
alias: {
"@src": root,
"@assets": assetsDir,
"@/app": resolve(root, "app"),
"@/pages": resolve(root, "pages"),
"@/shared": resolve(root, "shared"),
"@/widgets": resolve(root, "widgets"),
"@/features": resolve(root, "features"),
"@/entities": resolve(root, "entities"),
},
},
plugins: [
react(),
makeManifest(manifest, {
isDev,
contentScriptCssKey: regenerateCacheInvalidationKey(),
}),
customDynamicImport(),
addHmr({ background: enableHmrInBackgroundScript, view: true }),
vanillaExtractPlugin(),
],
publicDir,
build: {
outDir,
/** Can slowDown build speed. */
// sourcemap: isDev,
minify: isProduction,
reportCompressedSize: isProduction,
rollupOptions: {
input: {
devtools: resolve(pagesDir, "devtools", "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"),
getApiList: resolve(pagesDir, "content/modules", "getApiList.ts"),
},
watch: {
include: ["src/**", "vite.config.ts"],
exclude: ["node_modules/**", "src/**/*.spec.ts"],
},
output: {
entryFileNames: (assetInfo: PreRenderedChunk) => {
if (assetInfo.name === "getApiList") {
return "getApiList.js";
}
return `src/pages/${assetInfo.name}/index.js`;
},
chunkFileNames: isDev
? "assets/js/[name].js"
: "assets/js/[name].[hash].js",
assetFileNames: (assetInfo) => {
const { dir, name: _name } = path.parse(assetInfo.name);
const assetFolder = dir.split("/").at(-1);
const name = assetFolder + firstUpperCase(_name);
if (name === "contentStyle") {
return `assets/css/contentStyle${cacheInvalidationKey}.chunk.css`;
}
return `assets/[ext]/${name}.chunk.[ext]`;
},
},
plugins: [
copy({
targets: [{ src: "src/_locales/**/*", dest: "dist/_locales" }],
hook: "writeBundle", // notice this
}),
],
},
},
});
function firstUpperCase(str: string) {
const firstAlphabet = new RegExp(/( |^)[a-z]/, "g");
return str.toLowerCase().replace(firstAlphabet, (L) => L.toUpperCase());
}
let cacheInvalidationKey: string = generateKey();
function regenerateCacheInvalidationKey() {
cacheInvalidationKey = generateKey();
return cacheInvalidationKey;
}
function generateKey(): string {
return `${(Date.now() / 100).toFixed()}`;
}