This commit is contained in:
JensDiemer 2022-08-15 08:26:42 +02:00
parent 3af776f87c
commit 0eac7fc72f

View file

@ -31,6 +31,6 @@ if settings.PATH_URL:
else: else:
# Installed to domain root, without a path prefix # Installed to domain root, without a path prefix
urlpatterns = [ urlpatterns = [
path('/debug/', request_media_debug_view), path('debug/', request_media_debug_view),
path('/', admin.site.urls), path('', admin.site.urls),
] ]