django-todo-react icon indicating copy to clipboard operation
django-todo-react copied to clipboard

CORS_ORIGIN_WHITELIST is added in wrong way.

Open yogeshsingh101200 opened this issue 4 years ago • 0 comments

See this issue. This is the error one will face if he runs the server with cors_origin_whitelist setup the current way. So it needed to be updated according to this changelog.

TL;DR: change CORS_ORIGIN_WHITELIST = (localhost:3000/') to CORS_ORIGIN_WHITELIST = ['http://localhost:3000']

yogeshsingh101200 avatar Oct 08 '20 11:10 yogeshsingh101200