From 9d2a1da039467185c32c24949057f383e5cf7f03 Mon Sep 17 00:00:00 2001 From: Georg Krause Date: Wed, 19 Oct 2022 13:01:47 +0200 Subject: [PATCH] fix(spa): Adjust URL configuration path --- api/config/settings/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/config/settings/common.py b/api/config/settings/common.py index 81fb10996..2b82688d2 100644 --- a/api/config/settings/common.py +++ b/api/config/settings/common.py @@ -605,7 +605,7 @@ from the system. # URL Configuration # ------------------------------------------------------------------------------ ROOT_URLCONF = "config.urls" -SPA_URLCONF = "config.spa_urls" +SPA_URLCONF = "config.urls.spa" ASGI_APPLICATION = "config.routing.application" # This ensures that Django will be able to detect a secure connection