Fix /v/ url pattern

This commit is contained in:
Fam Zheng 2024-12-19 22:37:13 +00:00
parent d07bf5b40d
commit b4bd78f935

View File

@ -1,7 +1,7 @@
from django.urls import path, include
from django.urls import re_path, include
from .views import *
urlpatterns = [
path('', MiniProgEntryVView.as_view())
re_path(r'.*', MiniProgEntryVView.as_view())
]