From 2e950f63352d2b9a5db0530e5d30e9f0a77055d9 Mon Sep 17 00:00:00 2001 From: Krishna Bhandari Date: Sun, 8 Sep 2024 17:00:00 +0545 Subject: [PATCH] Update laravel.md Hi, There were a few issues with using the current installation command: The --typescript option is not supported. When the --no-interaction flag is included, it cannot choose the default testing framework, which results in an error. This PR will remove the two options, --typescript and --no-interaction. Screenshots of the errors are listed below: Thank you :) --- apps/www/src/content/docs/installation/laravel.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/www/src/content/docs/installation/laravel.md b/apps/www/src/content/docs/installation/laravel.md index fc8fd8ae..f322bea2 100644 --- a/apps/www/src/content/docs/installation/laravel.md +++ b/apps/www/src/content/docs/installation/laravel.md @@ -10,7 +10,7 @@ description: Install and configure Laravel with Inertia Start by creating a new Laravel project with Inertia and Vue using the Laravel installer `laravel new my-app`: ```bash -laravel new my-app --typescript --breeze --stack=vue --git --no-interaction +laravel new my-app --breeze --stack=vue --git ``` ### Run the CLI @@ -18,6 +18,7 @@ laravel new my-app --typescript --breeze --stack=vue --git --no-interaction Run the `shadcn-vue` init command to setup your project: ```bash +cd my-app npx shadcn-vue@latest init ```