diff --git a/backend/core/settings.py b/backend/core/settings.py index b91afa5..2955fad 100644 --- a/backend/core/settings.py +++ b/backend/core/settings.py @@ -53,7 +53,7 @@ INSTALLED_APPS = [ "api.user", "api.posts", "api.creators", - "images", + # Apps for Backend logic "apps", "apps.archive", "apps.files", diff --git a/backend/core/urls.py b/backend/core/urls.py index 597b9c9..ac99c3f 100644 --- a/backend/core/urls.py +++ b/backend/core/urls.py @@ -21,5 +21,4 @@ from django.urls import include, path urlpatterns = [ path("admin/", admin.site.urls), path("api/", include("api.urls")), - path("", include("images.urls")), ]