We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf9898a commit e12d1b0Copy full SHA for e12d1b0
webview-ui/vite.config.ts
@@ -62,7 +62,9 @@ export default defineConfig(({ mode }) => {
62
"process.env.PKG_NAME": JSON.stringify(pkg.name),
63
"process.env.PKG_VERSION": JSON.stringify(pkg.version),
64
"process.env.PKG_OUTPUT_CHANNEL": JSON.stringify("Kilo-Code"),
65
- "process.env.KILOCODE_BASE_URL": JSON.stringify(env.KILOCODE_BASE_URL || process.env.KILOCODE_BASE_URL),
+ "process.env.KILOCODE_BASE_URL": process.env.KILOCODE_BASE_URL
66
+ ? JSON.stringify(process.env.KILOCODE_BASE_URL)
67
+ : undefined,
68
...(gitSha ? { "process.env.PKG_SHA": JSON.stringify(gitSha) } : {}),
69
}
70
0 commit comments