feat(kursy/urls.py): add django_browser_reload url path

This commit is contained in:
2026-03-11 14:47:18 +01:00
parent 54be520743
commit 4439fd1003

View File

@@ -31,6 +31,11 @@ if settings.DEBUG:
urlpatterns += staticfiles_urlpatterns()
urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
# browser reload urls
urlpatterns += [
path("__reload__/", include("django_browser_reload.urls")),
]
urlpatterns = urlpatterns + [
# For anything not caught by a more specific rule above, hand over to
# Wagtail's page serving mechanism. This should be the last pattern in