From e06be007eac21d1db3ec2662aad1abeb0d8ef420 Mon Sep 17 00:00:00 2001 From: Github11200 Date: Tue, 2 Apr 2024 22:39:54 -0700 Subject: [PATCH] Updated the docs to use PNPM instead of NPM because there were errors with NPM. --- pages/setup-dev-environment.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pages/setup-dev-environment.mdx b/pages/setup-dev-environment.mdx index 3887240..09779c9 100644 --- a/pages/setup-dev-environment.mdx +++ b/pages/setup-dev-environment.mdx @@ -67,10 +67,10 @@ Go to the frontend folder cd apps/web ``` -This will install all the dependencies needed for the frontend +This will install all the dependencies needed for the frontend, and for this you will need [pnpm](https://pnpm.io/). ```shell copy -npm i +pnpm i ``` Add an .env file in the front folder with the following content @@ -92,7 +92,7 @@ NEXT_PUBLIC_LEARNHOUSE_DOMAIN=localhost:3000 Run the dev environment ```shell copy -npm run dev +pnpm run dev ``` ### Get to the install page