-
Notifications
You must be signed in to change notification settings - Fork 15.2k
Expand file tree
/
Copy pathvite.config.ts
More file actions
100 lines (87 loc) · 2.63 KB
/
vite.config.ts
File metadata and controls
100 lines (87 loc) · 2.63 KB
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
import { defineConfig, type Plugin } from "vite";
import { resolve, dirname } from "path";
import { readFileSync } from "fs";
import { getMacroDefines } from "./scripts/defines";
import featureFlagsPlugin from "./scripts/vite-plugin-feature-flags";
import importMetaRequirePlugin from "./scripts/vite-plugin-import-meta-require";
const projectRoot = dirname(new URL(import.meta.url).pathname);
/**
* Plugin to import .md files as raw strings (Bun's text loader behavior).
*/
function rawAssetPlugin(extensions: string[]): Plugin {
return {
name: "raw-asset",
enforce: "pre",
resolveId(id, importer) {
if (extensions.some((ext) => id.endsWith(ext))) {
// Resolve to actual file path
return this.resolve(id, importer, { skipSelf: true });
}
return null;
},
load(id) {
if (extensions.some((ext) => id.endsWith(ext))) {
const content = readFileSync(id, "utf-8");
return `export default ${JSON.stringify(content)}`;
}
return null;
},
};
}
export default defineConfig({
// CLI tool — no browser features needed
appType: "custom",
// Tell Vite this is a Node.js build, not browser.
// Prevents externalization of Node.js builtins (fs, path, etc.)
ssr: {
target: "node",
noExternal: true,
},
build: {
emptyOutDir: true,
outDir: "dist",
target: "esnext",
copyPublicDir: false,
sourcemap: false,
minify: false,
// SSR build mode — uses Rollup with Node.js target
ssr: true,
rollupOptions: {
input: resolve(projectRoot, "src/entrypoints/cli.tsx"),
output: {
format: "es",
dir: "dist",
entryFileNames: "cli.js",
chunkFileNames: "chunks/[name]-[hash].js",
},
// Externalize native addon packages (they contain .node binaries)
external: [
/audio-capture-napi/,
/color-diff-napi/,
/image-processor-napi/,
/modifiers-napi/,
/url-handler-napi/,
],
plugins: [
rawAssetPlugin([".md", ".txt", ".html", ".css"]),
featureFlagsPlugin(),
importMetaRequirePlugin(),
],
},
cssCodeSplit: false,
},
// Compile-time constant replacement (MACRO.* defines)
define: {
...getMacroDefines(),
},
resolve: {
alias: {
// src/* path alias (mirrors tsconfig paths)
"src/": resolve(projectRoot, "src/"),
},
// Ensure workspace packages share a single copy of these
dedupe: ["react", "react-reconciler", "react-compiler-runtime"],
// Resolve .js imports to .ts files (Bun does this automatically)
extensions: [".ts", ".tsx", ".js", ".jsx", ".json"],
},
});