t-headers de django
$ pipenv install django-cors-headers
# or
$ pip install django-cors-headers
Salo Hopeless
$ pipenv install django-cors-headers
# or
$ pip install django-cors-headers
CORS_ALLOWED_ORIGINS = [
"https://example.com",
"https://sub.example.com",
"http://localhost:8080",
"http://127.0.0.1:9000"
]
CORS_ORIGIN_WHITELIST = (
'google.com',
'hostname.example.com'
)
python -m pip install django-cors-headers
INSTALLED_APPS = [
...
'corsheaders',
...
]