Created
November 16, 2020 19:36
-
-
Save JoaquinAcuna97/8624de3ca6fc776994beb0390285bc4b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
INSTALLED_APPS = ( | |
... | |
'corsheaders', | |
... | |
) | |
MIDDLEWARE_CLASSES = ( | |
... | |
'corsheaders.middleware.CorsMiddleware', | |
'django.middleware.common.CommonMiddleware', | |
... | |
) | |
CORS_ORIGIN_ALLOW_ALL = True |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment