mikezay
mikezay
PPrisma
Created by mikezay on 4/1/2025 in #help-and-questions
Possible error in docs?
https://www.prisma.io/docs/guides/nextjs#25-set-up-prisma-client Here i copied the following:
import { PrismaClient } from '@prisma/client'
import { withAccelerate } from '@prisma/extension-accelerate'

const globalForPrisma = global as unknown as { prisma: typeof prisma }

const prisma = globalForPrisma.prisma || new PrismaClient().$extends(withAccelerate())

if (process.env.NODE_ENV !== 'production') globalForPrisma.prisma = prisma

export default prisma
import { PrismaClient } from '@prisma/client'
import { withAccelerate } from '@prisma/extension-accelerate'

const globalForPrisma = global as unknown as { prisma: typeof prisma }

const prisma = globalForPrisma.prisma || new PrismaClient().$extends(withAccelerate())

if (process.env.NODE_ENV !== 'production') globalForPrisma.prisma = prisma

export default prisma
In line 4 it gives an error
'prisma' is referenced directly or indirectly in its own type annotation.ts(2502)
(property) prisma: any
'prisma' is referenced directly or indirectly in its own type annotation.ts(2502)
(property) prisma: any
In line 6 the error
'prisma' implicitly has type 'any' because it does not have a type annotation and is referenced directly or indirectly in its own initializer.
'prisma' implicitly has type 'any' because it does not have a type annotation and is referenced directly or indirectly in its own initializer.
4 replies