From 899ea476d613066254c23cf706000eba36f6d89c Mon Sep 17 00:00:00 2001 From: DJ Gillespie Date: Wed, 19 Jul 2023 22:22:43 -0600 Subject: [PATCH] updated cors rules to allow for chrome webapps --- core/settings/__init__.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/core/settings/__init__.py b/core/settings/__init__.py index 5f79e3f..ab7991d 100644 --- a/core/settings/__init__.py +++ b/core/settings/__init__.py @@ -76,8 +76,7 @@ MIDDLEWARE = [ ] CORS_ORIGIN_WHITELIST = [ - 'http://localhost:3000', - 'https://localhost:3000' + '*' ] ROOT_URLCONF = 'core.urls'