This commit is contained in:
张成
2026-03-18 16:16:04 +08:00
parent 3d3b9b5dfa
commit a62018a062
8 changed files with 38 additions and 17 deletions

View File

@@ -55,7 +55,8 @@ export function get_app_config() {
crx_src_path: must_get('CRX_SRC_PATH'),
action_timeout_ms: get_int('ACTION_TIMEOUT_MS', 300000),
puppeteer_headless: get_bool('PUPPETEER_HEADLESS', false),
chrome_executable_path: (get_env('CHROME_EXECUTABLE_PATH') || '').trim() || path.resolve(__dirname, '../../chrome-win/chrome.exe')
chrome_executable_path: (get_env('CHROME_EXECUTABLE_PATH') || '').trim() || path.resolve(__dirname, '../../chrome-win/chrome.exe'),
log_invoke_action: get_bool('LOG_INVOKE_ACTION', true)
}
};