From 0f10f08f6e8bcd6a0bd3e234a18e27df136ba4c4 Mon Sep 17 00:00:00 2001 From: tchawou-daniel Date: Sat, 16 Jan 2021 22:18:13 +0100 Subject: [PATCH] :wrench: add the front end url to CORS_ORIGIN_WHITELIST list --- conduit/settings.py | 1 + 1 file changed, 1 insertion(+) diff --git a/conduit/settings.py b/conduit/settings.py index b838a6d..8d049d7 100644 --- a/conduit/settings.py +++ b/conduit/settings.py @@ -25,6 +25,7 @@ class Config(object): 'http://localhost:4200', 'http://0.0.0.0:4000', 'http://localhost:4000', + 'https://2020devopsfinalfront.netlify.app', ] JWT_HEADER_TYPE = 'Token'