From 41dfeb5e1c3f69b01b1877ee1f54ed7c84567a45 Mon Sep 17 00:00:00 2001 From: akash Date: Mon, 12 Jan 2026 16:06:09 +0530 Subject: [PATCH] Add automatic .htaccess deployment to fix blank page issues --- public/.htaccess | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 public/.htaccess diff --git a/public/.htaccess b/public/.htaccess new file mode 100644 index 0000000..4c8e8e2 --- /dev/null +++ b/public/.htaccess @@ -0,0 +1,6 @@ + + RewriteEngine On + RewriteCond %{REQUEST_FILENAME} !-f + RewriteCond %{REQUEST_FILENAME} !-d + RewriteRule . /index.html [L] +