diff options
| author | Philipp Tanlak <philipp.tanlak@gmail.com> | 2024-02-21 21:39:37 +0100 |
|---|---|---|
| committer | Philipp Tanlak <philipp.tanlak@gmail.com> | 2024-02-21 21:39:37 +0100 |
| commit | e2e0ed8fa7d26a23f77b378907b3f902be9e028e (patch) | |
| tree | f47717a3db0aba9e74cb67ce7ef4137f3d1da2d7 /template.js | |
| parent | c796f4164c13e30135246c08304acd7142673f60 (diff) | |
Use the cookie store from local browser
Diffstat (limited to 'template.js')
| -rw-r--r-- | template.js | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/template.js b/template.js index 17fe6ba..33713aa 100644 --- a/template.js +++ b/template.js @@ -49,6 +49,20 @@ export const config = { // "Authorization": "Bearer ...", // "User-Agent": "Mozilla ...", // }, + + // Use the cookie store of your local browser. (default = off) + // Options: "chrome" | "edge" | "firefox" + // cookies: "chrome" + + // Specify the output options. + // output: { + // // Specify the output file. (default = stdout) + // file: "results.json", + // + // // Specify the output format. (default = json) + // // Options: "json" | "ndjson" + // format: "json", + // }, }; export default function({ doc, absoluteURL }) { |