version last

This commit is contained in:
Flatlogic Bot 2026-03-13 04:27:57 +00:00
parent e1b2abf2d5
commit 9ed4b35c3c
2 changed files with 1 additions and 1 deletions

View File

@ -24,6 +24,6 @@ urlpatterns = [
path("admin/", admin.site.urls),
# Serve assets and static files explicitly before the catch-all
re_path(r'^assets/(?P<path>.*)$', serve, {'document_root': settings.BASE_DIR.parent / "frontend" / "dist" / "assets"}),
path(settings.STATIC_URL.lstrip('/'), serve, {'document_root': settings.STATIC_ROOT}),
re_path(r'^static/(?P<path>.*)$', serve, {'document_root': settings.STATIC_ROOT}),
path("", include("core.urls")),
]