Files
zn-ai/src/main/utils/chrome/getChromePath.ts
2026-03-03 17:05:13 +08:00

17 lines
428 B
TypeScript

// 启动本地Chrome
export function getChromePath () {
if (process.platform === 'win32') {
// "C:\Program Files\Google\Chrome\Application\chrome.exe"
return 'C:\\Program Files\\Google\\Chrome\\Application\\chrome.exe';
}
if (process.platform === 'darwin') {
return '/Applications/Google Chrome.app/Contents/MacOS/Google Chrome';
}
if (process.platform === 'linux') {
return 'google-chrome';
}
}