1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
INSTALLED_APPS = [ ... 'corsheaders', ]
MIDDLEWARE = [ ... 'corsheaders.middleware.CorsMiddleware', ]
CORS_ORIGIN_ALLOW_ALL = True
CORS_ALLOW_HEADERS = ( "accept", "accept-encoding", "authorization", "content-type", "dnt", "origin", "user-agent", "x-csrftoken", "x-requested-with",
'token', )
|