i update my prisma file adding the output
generator client {
provider = "prisma-client-js"
output = "../generated/prisma"
}
i'm using using dbClient with
export const dbClient = new PrismaClient().$extends(withAccelerate())
i generated the client with
npx prisma generate --no-engine
deploying my firebase functions i'm receving below error
Error: @prisma/client did not initialize yet. Please run "prisma generate" and try to import it again.
at new PrismaClient (D:\prj\Documentia\documentia\functions\node_modules.prisma\client\edge.js:43:11)
at Object.<anonymous> (D:\prj\Documentia\documentia\functions\lib\utils\utils.js:187:20)
at Module._compile (node:internal/modules/cjs/loader:1562:14)
at Object..js (node:internal/modules/cjs/loader:1699:10)
at Module.load (node:internal/modules/cjs/loader:1313:32)
at Function._load (node:internal/modules/cjs/loader:1123:12)
at TracingChannel.traceSync (node:diagnostics_channel:322:14)
at wrapModuleLoad (node:internal/modules/cjs/loader:217:24)
at Module.require (node:internal/modules/cjs/loader:1335:12)
at require (node:internal/modules/helpers:136:16)
[2025-04-30T10:16:44.056Z] Got response code 400; body Failed to generate manifest from function source: Error: @prisma/client did not initialize yet. Please run "prisma generate" and try to import it again.
i'm receiving this error even if i run many times (also without the --no-engine)
npx prisma generate --no-engine