fixes, nested the NextLink, it works, removed prisma

This commit is contained in:
2024-11-26 11:58:39 -05:00
parent 608705772e
commit 2454b1dc14
8 changed files with 51 additions and 181 deletions

View File

@@ -1,17 +0,0 @@
import { PrismaClient } from '@prisma/client'
const prisma = new PrismaClient()
async function main() {
// ... you will write your Prisma Client queries here
}
main()
.then(async () => {
await prisma.$disconnect()
})
.catch(async (e) => {
console.error(e)
await prisma.$disconnect()
process.exit(1)
})