feat: dist/ pridan do repa pro server deploy

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-13 09:19:40 +01:00
parent 1d27d19157
commit b2a2937a35
119 changed files with 15628 additions and 1 deletions

13
dist/router.php vendored Normal file
View File

@@ -0,0 +1,13 @@
<?php
/**
* SPA Router - serves index.html for all admin routes
*/
http_response_code(200);
$indexPath = __DIR__ . '/index.html';
if (file_exists($indexPath)) {
readfile($indexPath);
} else {
echo '<!DOCTYPE html><html><body><h1>Application not found</h1></body></html>';
}