Skip to content
Snippets Groups Projects
Commit 9ace1ed0 authored by Hangzhi Yu's avatar Hangzhi Yu
Browse files

Fix order in urls.py to priorize custom fallback page over the django-pwa one

parent aee5dbb0
No related branches found
No related tags found
1 merge request!405Resolve "Fix PWA offline fallback page"
Pipeline #4914 passed
......@@ -17,8 +17,8 @@ from .util.core_helpers import is_celery_enabled
urlpatterns = [
path("", include("django_prometheus.urls")),
path("", include("pwa.urls"), name="pwa"),
path("offline/", views.offline, name="offline"),
path("", include("pwa.urls"), name="pwa"),
path("about/", views.about, name="about_aleksis"),
path("admin/", admin.site.urls),
path("data_management/", views.data_management, name="data_management"),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment