version 19

This commit is contained in:
Flatlogic Bot 2026-03-13 03:00:10 +00:00
parent 0562fa6c32
commit 4ea794681e
2 changed files with 3 additions and 3 deletions

View File

@ -8,6 +8,6 @@ router.register(r'api/sellers', SellerViewSet)
router.register(r'api/products', ProductViewSet)
urlpatterns = [
path('', include(router.urls)),
re_path(r'^(?!api/|admin/).*$', serve_frontend, name='serve_frontend'),
]
path('api/', include(router.urls)),
re_path(r'^.*$', serve_frontend, name='serve_frontend'),
]