From 1dc06cb2b44f686658abd2224a6c5fbec67c0cfc Mon Sep 17 00:00:00 2001 From: MarekBodingerBA <104828482+MarekBodingerBA@users.noreply.github.com> Date: Tue, 30 Jun 2026 15:51:06 +0200 Subject: [PATCH] Fix command for scaffolding NestJS project --- apps/docs/content/docs/guides/frameworks/nestjs.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/docs/content/docs/guides/frameworks/nestjs.mdx b/apps/docs/content/docs/guides/frameworks/nestjs.mdx index c4cfb1143c..83ad60e592 100644 --- a/apps/docs/content/docs/guides/frameworks/nestjs.mdx +++ b/apps/docs/content/docs/guides/frameworks/nestjs.mdx @@ -22,7 +22,7 @@ You can find a ready-to-run example [here](https://github.com/prisma/prisma-exam Run one command to scaffold a NestJS project with Prisma ORM and Prisma Postgres ready to go: ```npm -npm create prisma@latest -- --template nestjs +npm create prisma@latest -- --template nest ``` Or follow the steps below to set it up manually.