Index
cors
INSTALLED_APPS = [
......
'graphene_django',
'corsheaders',
]
MIDDLEWARE = [
'corsheaders.middleware.CorsMiddleware',
.......
]
CORS_ORIGIN_WHITELIST = (
'http://localhost:3000',
)
......
'graphene_django',
'corsheaders',
]
MIDDLEWARE = [
'corsheaders.middleware.CorsMiddleware',
.......
]
CORS_ORIGIN_WHITELIST = (
'http://localhost:3000',
)