From f84faf913ba3062da8901f97aa929887b7306ab8 Mon Sep 17 00:00:00 2001 From: jungmir Date: Wed, 4 Sep 2024 22:42:52 +0900 Subject: [PATCH] =?UTF-8?q?Fix:=202024=20=ED=94=84=EB=A1=A0=ED=8A=B8=20?= =?UTF-8?q?=EA=B0=9C=EB=B0=9C=20=ED=8E=98=EC=9D=B4=EC=A7=80=20cors=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pyconkr/settings.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyconkr/settings.py b/pyconkr/settings.py index d7ad50c..2cc17e3 100644 --- a/pyconkr/settings.py +++ b/pyconkr/settings.py @@ -9,6 +9,7 @@ For the full list of settings and their values, see https://docs.djangoproject.com/en/4.1/ref/settings/ """ + import os import pathlib import types @@ -231,6 +232,7 @@ "http://pycon-prod2023.pycon.kr", "http://127.0.0.1:3000", "http://localhost:3000", + "pycon-dev2024.pycon.kr", ) CORS_ALLOW_CREDENTIALS = True