Troubleshooting
Solutions for common issues with Blueberry.
Installation Issues
âApp is damagedâ on macOS
macOS may block apps from unidentified developers.
Solution:
- Right-click the Blueberry app
- Select âOpenâ
- Click âOpenâ in the dialog
Or in Terminal:
xattr -cr /Applications/Blueberry.appApp wonât launch
Check:
- macOS version is supported (requires macOS 12+)
- Apple Silicon Mac (Intel not currently supported)
Terminal Issues
Terminal not responding
Try:
- Click the terminal panel to focus it
- Press
Ctrl+Cto interrupt any running process - If still frozen, close the tab and open a new one
Commands not found
Your shell may not be loading profile files.
Solution: Add to your terminal startup command in Settings:
source ~/.zshrcSession lost after sleep
Terminal sessions should persist for 30 minutes. If youâre losing them:
- Check your network connection
- Ensure Blueberry is still running (not suspended)
- Try increasing the system sleep timeout
Editor Issues
Syntax highlighting not working
Check:
- File has correct extension (
.ts,.tsx,.js, etc.) - File isnât too large (>2MB files may have limited highlighting)
LSP not providing completions
Check:
- Language server is installed for that language
- Project has a
tsconfig.json(for TypeScript) - Try restarting Blueberry
Slow performance with large files
Files over 2MB may be slow. Consider:
- Splitting large files
- Disabling minimap in Settings
Preview Issues
Preview shows blank page
Check:
- Dev server is running
- URL is correct
- No JavaScript errors (open DevTools with
Cmd+Option+I)
localhost not loading
Try:
- Verify your dev server is running
- Check the port matches your server
- Try
127.0.0.1instead oflocalhost
CSS not updating
Try:
- Hard refresh:
Cmd+Shift+R - Clear browser cache in DevTools
- Check for CSS compilation errors
Git Issues
Changes not showing
Check:
- Youâre in a git repository
- Files are not in
.gitignore - Try refreshing the Source Control panel
Commit failing
Check:
- Git is configured with name and email:
git config user.name "Your Name"
git config user.email "you@example.com"Claude Integration Issues
âNot running in Blueberry terminalâ
Claude must run in a Blueberry terminal to use MCP tools.
Solution:
- Open a terminal tab in Blueberry
- Run
claudefrom that terminal
âBlueberry not runningâ
Check:
- Blueberry is running
- The project is open in Blueberry
- Youâre running Claude from within the project directory
Tools returning errors
Check:
- Session token is set (happens automatically in Blueberry terminals)
- Project is open and matches your working directory
Remote Access Issues
Canât connect from other device
Check:
- Both devices on same network
- Remote access enabled in Blueberry settings
- Firewall isnât blocking the connection
- Try IP address instead of hostname
Preview not working in remote mode
localhost URLs wonât work from other devices.
Solution:
Start your dev server with --host:
npm run dev -- --host 0.0.0.0Performance Issues
High CPU usage
Try:
- Close unused terminal tabs
- Close unused preview tabs
- Disable minimap if not needed
- Restart Blueberry
High memory usage
Check:
- Number of open files (close unused tabs)
- Preview tabs (close unused pages)
- Terminal scrollback (clear with
Cmd+K)
Getting Help
If youâre still stuck:
- Check our FAQ
- Join our Slack communityÂ
- Report issues on GitHub
Last updated on