This commit is contained in:
2026-01-31 15:25:16 +01:00
parent 8f91f480eb
commit de7a0a85f6
2 changed files with 9 additions and 0 deletions
+5
View File
@@ -123,4 +123,9 @@ return [
'store' => env('APP_MAINTENANCE_STORE', 'database'),
],
'frontend' => [
'dev' => env('DEV', 0),
'dev_url' => env('FRONTEND_DEV_URL', 'http://localhost:5173'),
],
];
+4
View File
@@ -3,5 +3,9 @@
use Illuminate\Support\Facades\Route;
Route::get('/{any}', function () {
if (config('app.frontend.dev')) {
return redirect(config('app.frontend.dev_url'));
}
return file_get_contents(public_path('index.html'));
})->where('any', '.*');