错误:错误:(0,USe.isError) 不是一个函数,在 NEXT-js 应用程序、postgresql 中 Prisma 初始化时出错

问题描述 投票:0回答:1

我试图使用 next-js、Prisma、PostgreSQL 构建电子商务 我按照以下步骤操作: 第1步:

npx create-next-app@latest .

步骤2:

npm i --save-dev ts-node

第三步:

npm install prisma --save-dev

第4步:

npx prisma init --datasource-provider sqlite
此处发生错误:

Error: (0 , import_util10.isError) is not a function,

enter image description here

enter image description here

postgresql next.js prisma
1个回答
0
投票

Node.js 版本似乎有问题,在 Prisma#25560 中有相关讨论。一些建议的解决方案是:

  • 降级到 Node.js v20。
  • 如果使用Bun,你可以尝试
    bunx --bun prisma init
    (虽然这对我个人来说不起作用)。
© www.soinside.com 2019 - 2024. All rights reserved.