From c270ce41f08666cd0d597b23d545591b35029d14 Mon Sep 17 00:00:00 2001 From: Hugo LIVET Date: Tue, 13 Feb 2024 22:23:45 +0100 Subject: [PATCH] :sparkles: edit CORS --- src/app/settings.py | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 src/app/settings.py diff --git a/src/app/settings.py b/src/app/settings.py new file mode 100644 index 0000000..a07ebb5 --- /dev/null +++ b/src/app/settings.py @@ -0,0 +1,2 @@ +ALLOWED_HOSTS=['*'] +CORS_ORIGIN_ALLOW_ALL = True \ No newline at end of file