-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.ts
76 lines (68 loc) · 1.91 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
import react from "@vitejs/plugin-react";
import { resolve } from "path";
import fs from "fs";
import { defineConfig } from "vite";
import { crx, ManifestV3Export } from "@crxjs/vite-plugin";
import manifest from "./manifest.json";
import devManifest from "./manifest.dev.json";
import pkg from "./package.json";
const root = resolve(__dirname, "src");
const pagesDir = resolve(root, "pages");
const assetsDir = resolve(root, "assets");
const componentsDir = resolve(root, "components");
const utilsDir = resolve(root, "utils");
const outDir = resolve(__dirname, "dist");
const publicDir = resolve(__dirname, "public");
const isDev = process.env.__DEV__ === "true";
const extensionManifest = {
...manifest,
...(isDev ? devManifest : ({} as ManifestV3Export)),
name: isDev ? `DEV: ${manifest.name}` : manifest.name,
version: pkg.version,
};
// plugin to remove dev icons from prod build
function stripDevIcons(apply: boolean) {
if (apply) return null;
return {
name: "strip-dev-icons",
resolveId(source: string) {
return source === "virtual-module" ? source : null;
},
renderStart(outputOptions: any, inputOptions: any) {
const outDir = outputOptions.dir;
fs.rm(resolve(outDir, "dev-icon-32.png"), () =>
console.log(`Deleted dev-icon-32.png frm prod build`)
);
fs.rm(resolve(outDir, "dev-icon-128.png"), () =>
console.log(`Deleted dev-icon-128.png frm prod build`)
);
},
};
}
export default defineConfig({
resolve: {
alias: {
"@src": root,
"@assets": assetsDir,
"@pages": pagesDir,
"@components": componentsDir,
"@utils": utilsDir,
},
},
plugins: [
react(),
crx({
manifest: extensionManifest as ManifestV3Export,
contentScripts: {
injectCss: true,
},
}),
stripDevIcons(isDev),
],
publicDir,
build: {
outDir,
sourcemap: isDev,
emptyOutDir: !isDev,
},
});