summaryrefslogtreecommitdiff
path: root/docs/configuration/starting-url.md
blob: d5c096555f40a1c750d89f2290a6b0462b727041 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Stating URL

The `url` config option allows you to specify the initial URL at which the scraper should start its scraping process.

When no value is provided, the scraper will not start and exit immediately.

Example:

```javascript
export const config = {
    url: "http://example.com/",
    // ...
};
```