Django Cors 설치 및 설정

설치

# Bash
> pip install django-cors-headers

설정

# /mysite/settings.py
from corsheaders.defaults import default_headers

# Application definition
INSTALLED_APPS = [
    'corsheaders',
    # ...
]

MIDDLEWARE = [
    'corsheaders.middleware.CorsMiddleware',
    # ...
]

# CORS
CORS_ORIGIN_WHITELIST = [
    'http://localhost:3000',
]
CORS_ALLOW_CREDENTIALS = True
CORS_ALLOW_HEADERS = list(default_headers) + [ 'token' ]

좋은 웹페이지 즐겨찾기