From acb5892125bcdf46600ccfd66ae7ccce3a3a04fb Mon Sep 17 00:00:00 2001 From: Brandon Date: Tue, 16 Jul 2024 05:42:33 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Remove=20default=20routing=20fro?= =?UTF-8?q?m=20`Application::configure()`=20(#387)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Roots/Acorn/Application.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/Roots/Acorn/Application.php b/src/Roots/Acorn/Application.php index ede996ff..9f61dc56 100644 --- a/src/Roots/Acorn/Application.php +++ b/src/Roots/Acorn/Application.php @@ -75,10 +75,6 @@ public static function configure(?string $basePath = null) ->withEvents() ->withCommands() ->withProviders() - ->withRouting( - web: $basePath.'/routes/web.php', - api: $basePath.'/routes/api.php', - ) ->withMiddleware() ->withExceptions(); }