Spaces:
Running
Running
File size: 526 Bytes
947c08e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
from django.contrib import admin
from django.urls import path, include, re_path
from frontend import views
from django.conf.urls.static import static
from django.conf import settings
urlpatterns = [
path('assets/<path:file>/', views.assets_serve),
path('(tabs)/<path:file>/', views.assets_serve),
path('manifest.webmanifest/', views.manifest),
path('manifest.webmanifest', views.manifest),
path('', views.App),
re_path(r'^.*/$', views.App),
# path('_expo/<str:file>', views.static_serve),
] |