Error: Unable to resolve module .prisma/client/react-native from /home/expo/workingdir/build/node_modules/@prisma/client/react-native.js: .prisma/client/react-native could not be found within the project or in these directories: node_modules 1 | module.exports = {
2 | ...require('.prisma/client/react-native'),
| ^ 3 | } 4 |
prisma.schema:
generator client { provider = "prisma-client-react-native" previewFeatures = ["reactNative"]}datasource db { provider = "sqlite" url = "file:./app.db"}model Todo { id Int @id @default(autoincrement()) title String completed Boolean @default(false)}
generator client { provider = "prisma-client-react-native" previewFeatures = ["reactNative"]}datasource db { provider = "sqlite" url = "file:./app.db"}model Todo { id Int @id @default(autoincrement()) title String completed Boolean @default(false)}