Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(example): update README example pnpm cmds #10888

Merged
merged 1 commit into from
May 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions apps/examples/nextjs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
Loading