Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions docs/100-getting-started/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ hide_title: true
tocDepth: 1
sidebar_position: 0
sidebar_class_name: firstTitle
pagination_next: 'getting-started/quickstart'
---

import {
Expand Down
2 changes: 1 addition & 1 deletion docs/200-orm/200-prisma-client/450-testing/index.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: 'Testing'
navTitle: Testing
sidebar_label: Testing
metaTitle: 'Testing with Prisma ORM'
metaDescription: 'How to implement unit and integration testing with Prisma ORM'
hide_table_of_contents: true
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: 'Deploying database changes with Prisma Migrate'
navTitle: 'Deploying database changes'
sidebar_label: 'Deploying database changes'
metaDescription: 'Learn how to deploy database changes with Prisma Migrate.'
---

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Patching & hotfixing
navTitle: Patching & hotfixing
sidebar_label: Patching & hotfixing
metaDescription: How to reconcile the migration history after applying a hotfix or patch to a production environment.
---

Expand Down
2 changes: 1 addition & 1 deletion docs/200-orm/500-reference/050-prisma-client-reference.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: 'Prisma Client API reference'
navTitle: 'Prisma Client API'
sidebar_label: 'Prisma Client API'
metaTitle: 'Prisma Client API'
metaDescription: 'API reference documentation for Prisma Client.'
tocDepth: 3
Expand Down
2 changes: 1 addition & 1 deletion docs/200-orm/500-reference/100-prisma-schema-reference.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: 'Prisma schema reference'
navTitle: 'Prisma Schema'
sidebar_label: 'Prisma Schema'
metaTitle: 'Prisma Schema API'
metaDescription: 'API reference documentation for the Prisma Schema Language (PSL).'
tocDepth: 3
Expand Down
2 changes: 1 addition & 1 deletion docs/200-orm/500-reference/200-prisma-cli-reference.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: 'Prisma CLI reference'
navTitle: 'Prisma CLI'
sidebar_label: 'Prisma CLI'
metaTitle: 'Prisma CLI'
metaDescription: 'This page gives an overview of all available Prisma CLI commands, explains their options and shows numerous usage examples.'
tocDepth: 3
Expand Down
2 changes: 1 addition & 1 deletion docs/200-orm/500-reference/250-error-reference.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: 'Error message reference'
navTitle: 'Errors'
sidebar_label: 'Errors'
metaTitle: 'Errors'
metaDescription: 'Prisma Client, Migrate, Introspection error message reference'
tocDepth: 3
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: 'Environment variables reference'
navTitle: 'Environment variables'
sidebar_label: 'Environment variables'
metaTitle: 'Prisma environment variables'
metaDescription: 'This page gives an overview of all environment variables available for use.'
tocDepth: 3
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: 'Development environment'
navTitle: Development environment
sidebar_label: Development environment
metaTitle: 'Development environment'
metaDescription: 'Using env vars, editors and workspaces in your development environment'
hide_table_of_contents: true
Expand Down
7 changes: 5 additions & 2 deletions docs/500-platform/60-platform-cli/_category_.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
{
"collapsed": false,
"collapsible": false
"collapsed": false,
"collapsible": false,
"customProps": {
"badge": "Early Access"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: 'MDX components'
metaTitle: 'MDX components in the Prisma docs'
metaDescription: 'MDX components components available on the Prisma documentation site.'
navTitle: 'MDX components'
sidebar_label: 'MDX components'
search: false
---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Note:
- You can wrap the `metaTitle` text in single quotes, but this is not mandatory.
- If you wrap the `metaTitle` text in single quotes, then you cannot include apostrophes in the text.

## `navTitle`
## `sidebar_label`

Specifies a different, usually shorter title for the left-hand navigation.

Expand Down
14 changes: 3 additions & 11 deletions docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -393,31 +393,23 @@ const config: Config = {
},
{
label: ' ',
href: "https://discord.gg/KQyTW2H5ca",
href: "https://x.com/prisma",
customProps: {
icon: "fa-brands fa-x-twitter",
internal: true,
}
},
{
label: ' ',
href: "https://discord.gg/KQyTW2H5ca",
href: "https://www.youtube.com/prismadata",
customProps: {
icon: "fa-brands fa-youtube",
internal: true,
}
},
{
label: ' ',
href: "https://discord.gg/KQyTW2H5ca",
customProps: {
icon: "fa-brands fa-slack",
internal: true,
}
},
{
label: ' ',
href: "https://discord.gg/KQyTW2H5ca",
href: "https://github.com/prisma",
customProps: {
icon: "fa-brands fa-github",
internal: true,
Expand Down