feat: improved dark mode color (#6616)

This commit is contained in:
Anoop M D
2026-01-01 22:06:38 +05:30
committed by GitHub
parent 1a4a30c8f2
commit 23e809e827
8 changed files with 246 additions and 41 deletions

View File

@@ -195,8 +195,9 @@ app.on('ready', async () => {
mainWindow.once('ready-to-show', () => {
mainWindow.show();
});
const devPort = process.env.BRUNO_DEV_PORT || 3000;
const url = isDev
? 'http://localhost:3000'
? `http://localhost:${devPort}`
: format({
pathname: path.join(__dirname, '../web/index.html'),
protocol: 'file:',