feat(setup preprod)

This commit is contained in:
2026-04-10 12:16:18 +02:00
parent 59017a2c9b
commit e00f6d1b47
4 changed files with 40 additions and 19 deletions

View File

@@ -4,11 +4,11 @@ use App\Http\Controllers\DashboardController;
use Illuminate\Support\Facades\Route;
use Inertia\Inertia;
Route::get('/welcome', function () {
Route::get('/', function () {
return Inertia::render('welcome');
})->name('home');
Route::get('/', function () {
Route::get('/maintenance', function () {
return Inertia::render('maintenance');
})->name('maintenance');