fix: resolve Prisma mismatch, update Next.js setup and docker configuration

This commit is contained in:
OG T
2026-06-07 13:38:59 +08:00
parent a270ad7813
commit aacf45d87d
9 changed files with 132 additions and 498 deletions

View File

@@ -1,5 +1,7 @@
import { prisma } from "@/lib/prisma";
import { notFound } from "next/navigation";
export const dynamic = "force-dynamic";
import Link from "next/link";
export default async function TaskDetails({ params }: { params: Promise<{ id: string }> }) {