1
0
mirror of https://github.com/MontFerret/ferret.git synced 2025-02-03 13:11:45 +02:00
ferret/examples/disable-images.fql
2021-06-25 22:35:51 -04:00

14 lines
221 B
Plaintext

LET p = DOCUMENT("https://www.gettyimages.com/", {
driver: "cdp",
ignore: {
resources: [
{
url: "*",
type: "image"
}
]
}
})
RETURN NONE