ilikerobots/cookiecutter-vue-django

[bug] CORS Error

Closed this issue · 1 comments

What happened?

No 'Access-Control-Allow-Origin' header is present on the requested resource.

What should've happened instead?

When loading fruits list allow to get the fruits using the REST view

Additional details

It seems CORS has not been implemented correctly, how should I proceed?

It seems that CORS_URLS_REGEX does not work, however
CORS_ORIGIN_ALLOW_ALL = True does the trick.
If we want to be more restrictive we may just add:
CORS_ORIGIN_WHITELIST = [
'http://localhost:8080',
'http://127.0.0.1:8080',
'http://localhost:8000',
'http://127.0.0.1:8000',
'http://localhost:8001',
'http://127.0.0.1:8001',
]