Add automatic .htaccess deployment to fix blank page issues

This commit is contained in:
akash 2026-01-12 16:06:09 +05:30
parent 1761f073bf
commit 41dfeb5e1c

6
public/.htaccess Normal file
View File

@ -0,0 +1,6 @@
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.html [L]
</IfModule>