From 99264bcb367040600c0fc99831161d3d1efda63e Mon Sep 17 00:00:00 2001 From: Maruf Alom Date: Sun, 24 Mar 2024 21:28:32 +0600 Subject: [PATCH] fix: removed route service provider --- src/TallPreset.php | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/TallPreset.php b/src/TallPreset.php index 195f887..63f356c 100644 --- a/src/TallPreset.php +++ b/src/TallPreset.php @@ -30,16 +30,6 @@ public static function install() : void $filesystem = new Filesystem; $filesystem->deleteDirectory(resource_path('sass')); $filesystem->copyDirectory(__DIR__ . '/../stubs/default', base_path()); - - if (file_exists(base_path('app/Providers/RouteServiceProvider.php'))) { - static::updateFile(base_path('app/Providers/RouteServiceProvider.php'), static function ($file) { - return str_replace( - "public const HOME = '/home';", - "public const HOME = '/';", - $file - ); - }); - } } public static function installAuth()