diff --git a/core/settings/__init__.py b/core/settings/__init__.py index ab7991d..0680661 100644 --- a/core/settings/__init__.py +++ b/core/settings/__init__.py @@ -76,8 +76,11 @@ MIDDLEWARE = [ ] CORS_ORIGIN_WHITELIST = [ - '*' + 'http://localhost:3000', + 'https://localhost:3000', + 'http://localhost:44485' ] +CORS_ALLOW_ALL_ORIGINS = True ROOT_URLCONF = 'core.urls'