Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/desktop/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "openconduit",
"productName": "OpenConduit",
"version": "2.0.0-beta.1",
"version": "2.0.0-beta.2",
"description": "Cross-platform desktop AI chat client — OpenAI, Anthropic, LM Studio, and MCP tool servers",
"main": ".vite/build/main.js",
"private": true,
Expand Down
8 changes: 4 additions & 4 deletions packages/desktop/vite.main.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ export default defineConfig({
build: {
rollupOptions: {
// Optional native modules used by ws / @google/genai — not needed at runtime.
// @aws-sdk/* and @smithy/* use circular re-exports that confuse Rollup; mark
// them external so Electron requires them directly from node_modules instead.
// @aws-sdk/* and @smithy/* were previously external but that breaks packaged
// builds: with npm workspaces hoisting, those packages live at the workspace
// root node_modules/ which electron-forge never copies into the .asar.
// Bundling them with Vite is the correct fix.
external: [
'bufferutil',
'utf-8-validate',
/^@aws-sdk\//,
/^@smithy\//,
],
},
},
Expand Down
Loading