Removing background processing limitations; added change detector call to tabs component

This commit is contained in:
2025-06-15 17:47:11 -05:00
parent 9e4ac75a91
commit b49883f7b2
3 changed files with 14 additions and 5 deletions

View File

@@ -34,12 +34,13 @@ const createWindow = (startType = "build", debug = false, args = []) => {
icon: settingsManager.getIconPath(),
webPreferences: {
preload: path.join(__dirname, 'preload.js'),
backgroundThrottling: false,
webSecurity: true,
sandbox: true,
nodeIntegration: false,
contextIsolation: true,
enableRemoteModule: false,
plugins: true,
webSecurity: true,
sandbox: true,
}
});