🔧 Minimal bootloader

This commit is contained in:
Ben Word
2025-01-04 09:09:18 -05:00
parent e7a87f09c5
commit 89e5ebcd55

View File

@@ -1,8 +1,6 @@
<?php <?php
use Roots\Acorn\Application; use Roots\Acorn\Application;
use Roots\Acorn\Configuration\Exceptions;
use Roots\Acorn\Configuration\Middleware;
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
@@ -34,12 +32,9 @@ require $composer;
*/ */
Application::configure() Application::configure()
->withMiddleware(function (Middleware $middleware) { ->withProviders([
// App\Providers\ThemeServiceProvider::class,
}) ])
->withExceptions(function (Exceptions $exceptions) {
//
})
->boot(); ->boot();
/* /*