from django.urls import path, re_path from . import views # SPA shell: serve index.html for all /jbot/* paths so React Router handles navigation urlpatterns = [ path('', views.JbotIndexView.as_view(), name='jbot-index'), re_path(r'^.*$', views.JbotIndexView.as_view(), name='jbot-spa'), ]