Skip to content

Commit

Permalink
fix: removed route service provider
Browse files Browse the repository at this point in the history
  • Loading branch information
marufmax committed Mar 24, 2024
1 parent c8603dc commit 99264bc
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions src/TallPreset.php
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 99264bc

Please sign in to comment.