Clening up
All checks were successful
Push image to registry / build-image (push) Successful in 3m55s
All checks were successful
Push image to registry / build-image (push) Successful in 3m55s
This commit is contained in:
@ -24,7 +24,7 @@ class AppServiceProvider extends ServiceProvider
|
||||
{
|
||||
Vite::prefetch(concurrency: 3);
|
||||
|
||||
if (str_starts_with(env('APP_URL'), "https://")) {
|
||||
if (str_starts_with(config('app.url'), "https://")) {
|
||||
$url->forceScheme('https');
|
||||
}
|
||||
}
|
||||
|
@ -16,8 +16,3 @@ Route::get('/test/{id}', function (Request $request, $id, BrowserJobsInstances $
|
||||
});
|
||||
|
||||
Route::get('jobs/{job}/test', [JobController::class, 'test'])->name('jobs.test');
|
||||
|
||||
Route::get('testenv', function () {
|
||||
dump(config('app.url'));
|
||||
dump(env("TEST"));
|
||||
});
|
||||
|
Reference in New Issue
Block a user