@lightcone-ai/daemon 0.9.34 → 0.9.35
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -132,6 +132,9 @@ async function _spawnChrome(profileDir, port) {
|
|
|
132
132
|
'--no-first-run',
|
|
133
133
|
'--no-default-browser-check',
|
|
134
134
|
'--disable-hang-monitor',
|
|
135
|
+
'--use-mock-keychain',
|
|
136
|
+
'--password-store=basic',
|
|
137
|
+
'--disable-gpu',
|
|
135
138
|
'--user-agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',
|
|
136
139
|
'about:blank',
|
|
137
140
|
], { stdio: 'ignore', detached: false });
|
package/package.json
CHANGED
package/src/browser-login.js
CHANGED
|
@@ -119,6 +119,9 @@ export class BrowserLoginSession {
|
|
|
119
119
|
'--no-first-run',
|
|
120
120
|
'--no-default-browser-check',
|
|
121
121
|
'--disable-hang-monitor',
|
|
122
|
+
'--use-mock-keychain',
|
|
123
|
+
'--password-store=basic',
|
|
124
|
+
'--disable-gpu',
|
|
122
125
|
'--user-agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',
|
|
123
126
|
'about:blank',
|
|
124
127
|
], { stdio: ['ignore', 'ignore', 'pipe'], detached: false });
|