2022-10-21 13:09:21 +00:00
|
|
|
---
|
|
|
|
sidebar_label: Configuration.skipDownload
|
|
|
|
---
|
|
|
|
|
|
|
|
# Configuration.skipDownload property
|
|
|
|
|
2022-10-24 07:07:05 +00:00
|
|
|
Tells Puppeteer to not download during installation.
|
|
|
|
|
|
|
|
Can be overridden by `PUPPETEER_SKIP_DOWNLOAD`.
|
|
|
|
|
|
|
|
#### Signature:
|
2022-10-21 13:09:21 +00:00
|
|
|
|
|
|
|
```typescript
|
|
|
|
interface Configuration {
|
|
|
|
skipDownload?: boolean;
|
|
|
|
}
|
|
|
|
```
|