Skip to content

Commit

Permalink
fix: disable spashScreen
Browse files Browse the repository at this point in the history
  • Loading branch information
NicoTuxx committed Mar 15, 2024
1 parent ad59112 commit 8101a7c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions client/capacitor.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ const config: CapacitorElectronConfig = {
},
electron: {
trayIconAndMenuEnabled: true,
splashScreenEnabled: true,
},
splashScreenEnabled: false, // sadly we are forced to disable the splash screen because of capacitor-community/electron v5.0.1
}, // see: https://github.com/capacitor-community/electron/issues/280
};

export default config;
3 changes: 2 additions & 1 deletion client/electron/capacitor.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ const config: CapacitorElectronConfig = {
},
electron: {
trayIconAndMenuEnabled: true,
splashScreenEnabled: true,
splashScreenEnabled: false, // sadly we are forced to disable the splash screen because of capacitor-community/electron v5.0.1
// see: https://github.com/capacitor-community/electron/issues/280
deepLinkingEnabled: true,
deepLinkingCustomProtocol: 'parsec3',
},
Expand Down

0 comments on commit 8101a7c

Please sign in to comment.