feat: PWA (#15)

add for PWA capability
This commit is contained in:
2026-03-26 18:32:07 -04:00
parent 36f3ab3bd1
commit 5ac8736004
5 changed files with 100 additions and 0 deletions

9
public/.htaccess Normal file
View File

@@ -0,0 +1,9 @@
<IfModule mod_rewrite.c>
Options -MultiViews
RewriteEngine On
SetEnvIf X-Forwarded-Proto "https" HTTPS=on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php [QSA,L]
</IfModule>