diff options
| author | Philipp Tanlak <philipp.tanlak@gmail.com> | 2023-08-16 19:58:10 +0200 |
|---|---|---|
| committer | Philipp Tanlak <philipp.tanlak@gmail.com> | 2023-08-16 19:58:10 +0200 |
| commit | c36bb2ca2a82338a822c6962f3373809b4bed814 (patch) | |
| tree | d6cb54b7e9d7bf5742b06dedd6bf76eb09ea8385 /examples | |
| parent | d82e66800478219dd924c6969bd91dbfe004fc9d (diff) | |
add allowed domains feature
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/esbuild.github.io.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/examples/esbuild.github.io.js b/examples/esbuild.github.io.js index 7a00478..735a61e 100644 --- a/examples/esbuild.github.io.js +++ b/examples/esbuild.github.io.js @@ -3,6 +3,10 @@ import { parse } from "flyscrape"; export const options = { url: "https://esbuild.github.io/plugins/", depth: 1, + allowedDomains: [ + "esbuild.github.io", + "nodejs.org", + ], } export default function({ html }) { |