Skip to content

Commit 7642837

Browse files
authored
docs: properly capitalize SQLite and Next.js (#9848)
1 parent 254d888 commit 7642837

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

docs/getting-started/installation.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Payload requires the following software:
1212

1313
- Any JavaScript package manager (pnpm, npm, or yarn - pnpm is preferred)
1414
- Node.js version 20.9.0+
15-
- Any [compatible database](/docs/database/overview) (MongoDB, Postgres or Sqlite)
15+
- Any [compatible database](/docs/database/overview) (MongoDB, Postgres or SQLite)
1616

1717
<Banner type="warning">
1818
<strong>Important:</strong>

docs/local-api/overview.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -307,13 +307,13 @@ available:
307307
### Auth
308308

309309
```js
310-
// If you're using nextjs, you'll have to import headers from next/headers, like so:
310+
// If you're using Next.js, you'll have to import headers from next/headers, like so:
311311
// import { headers as nextHeaders } from 'next/headers'
312312

313313
// you'll also have to await headers inside your function, or component, like so:
314314
// const headers = await nextHeaders()
315315

316-
// If you're using payload outside of NextJS, you'll have to provide headers accordingly.
316+
// If you're using payload outside of Next.js, you'll have to provide headers accordingly.
317317

318318
// result will be formatted as follows:
319319
// {

docs/migration-guide/overview.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Payload 3.0 requires a set of auto-generated files that you will need to bring i
4040

4141
For more details, see the [Documentation](https://payloadcms.com/docs/getting-started/installation).
4242

43-
1. **Install new dependencies of payload, next.js and react**:
43+
1. **Install new dependencies of Payload, Next.js and React**:
4444

4545
Refer to the package.json file made in the create-payload-app, including peerDependencies, devDependencies, and dependencies. The core package and plugins require all versions to be synced. Previously, on 2.x it was possible to be running the latest version of payload 2.x with an older version of db-mongodb for example. This is no longer the case.
4646

@@ -412,7 +412,7 @@ For more details, see the [Documentation](https://payloadcms.com/docs/getting-st
412412
}
413413
})
414414
```
415-
1. The `./src/public` directory is now located directly at root level `./public` [see nextJS docs for details](https://nextjs.org/docs/pages/building-your-application/optimizing/static-assets)
415+
1. The `./src/public` directory is now located directly at root level `./public` [see Next.js docs for details](https://nextjs.org/docs/pages/building-your-application/optimizing/static-assets)
416416
417417
## Custom Components
418418

0 commit comments

Comments
 (0)