Browse Source

chore: Update URL pattern for admin site

Radu Boncea 8 months ago
parent
commit
ee76b4162d
1 changed files with 2 additions and 1 deletions
  1. 2 1
      llmeval/llmeval/urls.py

+ 2 - 1
llmeval/llmeval/urls.py

@@ -18,5 +18,6 @@ from django.contrib import admin
 from django.urls import path
 
 urlpatterns = [
-    path("admin/", admin.site.urls),
+    path("", admin.site.urls),
+    # path("admin/", admin.site.urls),
 ]