diff --git a/src/NewCommand.php b/src/NewCommand.php index efc99ce..b6f766f 100644 --- a/src/NewCommand.php +++ b/src/NewCommand.php @@ -358,7 +358,7 @@ protected function configureComposerScript(string $directory): void { $this->composer->modify(function (array $content) { if (windows_os()) { - $content['scripts']['dev'] = "npx concurrently -c \"#93c5fd,#c4b5fd,#fdba74\" \"php artisan serve\" \"php artisan queue:listen --tries=1\" \"npm run dev\" --names={{ 'server,queue,vite' }}"; + $content['scripts']['dev'] = "npx concurrently -c \"#93c5fd,#c4b5fd,#fdba74\" \"php artisan serve\" \"php artisan queue:listen --tries=1\" \"npm run dev\" --names='server,queue,vite'"; } return $content;