blob: 2b8f82c2cb425d09a03f443a666052f236159b17 (
plain) (
tree)
|
|
---
title: 'Headers'
weight: 9
---
The `headers` config option allows you to specify the custom HTTP headers sent with each request.
```javascript {filename="Configuration"}
export const config = {
headers: {
"Authorization": "Bearer ey....",
"User-Agent": "Mozilla/5.0 (Macintosh ...",
},
// ...
};
```
|