1
0
mirror of https://github.com/snobu/destreamer.git synced 2026-01-16 21:12:13 +00:00

Merge pull request #356 from Gargaj/patch-1

escape edge path properly
This commit is contained in:
lukaarma
2021-03-31 11:58:58 +02:00
committed by GitHub

View File

@@ -74,7 +74,7 @@ const browser: puppeteer.Browser = await puppeteer.launch({
Now, change `executablePath` to reflect the path to your browser and profile (i.e. to use Microsoft Edge on Windows):
```typescript
executablePath: 'C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe',
executablePath: 'C:\\Program Files (x86)\\Microsoft\\Edge\\Application\\msedge.exe',
```
In Linux for Chromium,
```typescript