From 2fc00a78422d3b8fcbbdfaf74c24100559797e06 Mon Sep 17 00:00:00 2001 From: JuanCarlosJr97 <36451129+juancarlosjr97@users.noreply.github.com> Date: Wed, 4 Nov 2020 02:01:13 +0000 Subject: [PATCH] Updating CORS_ENABLED to true by default Updating CORS_ENABLED to true by default as the documentation describes --- api/src/env.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/env.ts b/api/src/env.ts index d1cf1d1520..cdc2b6ad0c 100644 --- a/api/src/env.ts +++ b/api/src/env.ts @@ -29,7 +29,7 @@ const defaults: Record = { CORS_ENABLED: false, - CACHE_ENABLED: false, + CACHE_ENABLED: true, CACHE_STORE: 'memory', CACHE_TTL: '30m', CACHE_NAMESPACE: 'system-cache',