nem sei pq tantos arquivos

This commit is contained in:
2025-02-11 11:07:58 -03:00
parent 66fb4eb17b
commit 2da09a8a25
1841 changed files with 115867 additions and 77478 deletions

View File

@@ -0,0 +1,10 @@
from django.urls import path, re_path
from .views import manifest, offline, service_worker
# Serve up serviceworker.js and manifest.json at the root
urlpatterns = [
re_path(r"^serviceworker\.js$", service_worker, name="serviceworker"),
re_path(r"^manifest\.json$", manifest, name="manifest"),
path("offline/", offline, name="offline"),
]