From fd12863dcba483da7f9934661f8814bf12e24781 Mon Sep 17 00:00:00 2001 From: Kawahara Shotaro <121674121+k-taro56@users.noreply.github.com> Date: Mon, 13 May 2024 01:33:03 +0900 Subject: [PATCH] chore(example): update README example pnpm cmds (#10888) docs(example): Update package manager to pnpm --- apps/examples/nextjs/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/examples/nextjs/README.md b/apps/examples/nextjs/README.md index 65e90fac67..2ef15ddb91 100644 --- a/apps/examples/nextjs/README.md +++ b/apps/examples/nextjs/README.md @@ -46,7 +46,7 @@ Go to [next-auth.js.org](https://authjs.dev) for more information and documentat ``` git clone https://github.com/nextauthjs/next-auth-example.git cd next-auth-example -npm install +pnpm install ``` ### 2. Configure your local environment @@ -86,14 +86,14 @@ A list of configured providers and their callback URLs is available from the end To run your site locally, use: ``` -npm run dev +pnpm run dev ``` To run it in production mode, use: ``` -npm run build -npm run start +pnpm run build +pnpm run start ``` ### 5. Preparing for Production