mirror of
https://github.com/open-webui/desktop.git
synced 2026-07-02 19:03:41 -04:00
🐛 ReferenceError: appData is not defined #20
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @gabe-l-hart on GitHub (Feb 3, 2025).
Description
Disclaimer: I'm a total novice at frontend frameworks, so this could easily be user error!
When trying to run in development mode (
npm run start), I'm able to get through the initial installation phase and Open WebUI boots successfully in a subprocess (I can access it viahttp://localhost:8080in a browser tab), but the Electron app fails to render. It reaches the stage where it attempts to render the main UI, but only displays a black page with theOIlogo. The console shows the following error:Full Log
Environment
c36ab79v22.13.0package-lock.json
Repro Steps
nvmto selectv22(=>v22.13.0)npm inpm run create:python-tarnpm run startMy only thought was that this was caused by an incompatibility with the latest version of
open-webui's frontend, so I modified this line to pass0.5.6as the pinned version. I verified in the terminal logs that it installedv0.5.6, but that did not fix the issue.@gabe-l-hart commented on GitHub (Feb 3, 2025):
I also tried downgrading
electron-forgeto7.5.0in case it was related to this issue, but no luck.