diff --git a/src/Console/InstallCommand.php b/src/Console/InstallCommand.php index ae2a8faf4..349f63d6b 100644 --- a/src/Console/InstallCommand.php +++ b/src/Console/InstallCommand.php @@ -152,7 +152,9 @@ protected function installLivewireStack() return false; } - $this->call('install:api'); + $this->call('install:api', [ + '--without-migration-prompt' => true, + ]); // Update Configuration... $this->replaceInFile('inertia', 'livewire', config_path('jetstream.php')); @@ -336,7 +338,9 @@ protected function installInertiaStack() return false; } - $this->call('install:api'); + $this->call('install:api', [ + '--without-migration-prompt' => true, + ]); // Install NPM packages... $this->updateNodePackages(function ($packages) {