From 6669dfd5cfeaa68d9db574b39acf973b8823324c Mon Sep 17 00:00:00 2001 From: Ned Zimmerman Date: Fri, 8 Nov 2024 11:29:28 -0400 Subject: [PATCH] fix: remove unneeded code from installer --- src/Commands/HearthCommand.php | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/Commands/HearthCommand.php b/src/Commands/HearthCommand.php index 23d1ecf5..5d8c30f1 100644 --- a/src/Commands/HearthCommand.php +++ b/src/Commands/HearthCommand.php @@ -71,15 +71,6 @@ public function handle() $this->maybeAddLocale(); } - if (! App::environment('testing')) { - // Fonts... - $this->replaceInFile( - 'https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,700;1,400;1,700', - 'https://fonts.googleapis.com/css2?family=Comic+Neue:ital,wght@0,400;0,700;1,400;1,700&display=swap', - config_path('google-fonts.php') - ); - } - $this->line(''); $this->info('Hearth scaffolding installed successfully.'); $this->comment('Please execute "npm install" to install and build your assets.');