From 18b864eacebbe42ea3fc5cb81c599d36bee821a8 Mon Sep 17 00:00:00 2001 From: Nicolas Date: Sun, 24 Nov 2024 19:48:13 -0800 Subject: [PATCH] Update index.ts --- apps/api/src/scraper/scrapeURL/engines/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/api/src/scraper/scrapeURL/engines/index.ts b/apps/api/src/scraper/scrapeURL/engines/index.ts index d9168669..d2305d9c 100644 --- a/apps/api/src/scraper/scrapeURL/engines/index.ts +++ b/apps/api/src/scraper/scrapeURL/engines/index.ts @@ -16,7 +16,7 @@ const usePlaywright = process.env.PLAYWRIGHT_MICROSERVICE_URL !== '' && process. const useCache = process.env.CACHE_REDIS_URL !== '' && process.env.CACHE_REDIS_URL !== undefined; export const engines: Engine[] = [ - ...(useCache ? [ "cache" as const ] : []), + // ...(useCache ? [ "cache" as const ] : []), ...(useFireEngine ? [ "fire-engine;chrome-cdp" as const, "fire-engine;playwright" as const, "fire-engine;tlsclient" as const ] : []), ...(useScrapingBee ? [ "scrapingbee" as const, "scrapingbeeLoad" as const ] : []), ...(usePlaywright ? [ "playwright" as const ] : []),