Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. # django-cors-headers github : https://github.com/adamchainz/django-cors-headers ## Setup Install from pip: ``` pip install django-cors-headers ``` and then add it to your installed apps: `settings.py` ``` INSTALLED_APPS = [ ... 'corsheaders', ... ] CORS_ORIGIN_ALLOW_ALL = True CORS_ALLOW_CREDENTIALS = True ``` open/django-cors-headers.txt Last modified: 2024/10/05 06:15by 127.0.0.1