> TrustLab by DyzulkDev@1.0.0 build > next build Γû▓ Next.js 16.0.10 (Turbopack) - Environments: .env.local Creating an optimized production build ... > Build error occurred Error: Turbopack build failed with 1 errors: ./src/app/(public)/reset-password/page.tsx:6:29 Ecmascript file had an error 4 | import PageLoader from "@/components/ui/PageLoader"; 5 | > 6 | const ResetPasswordClient = dynamic(() => import("./ResetPasswordClient"), { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ > 7 | ssr: false, | ^^^^^^^^^^^^^ > 8 | }); | ^^^ 9 | 10 | export async function generateMetadata() { 11 | const t = await getTranslations("Auth"); `ssr: false` is not allowed with `next/dynamic` in Server Components. Please move it into a Client Component. at (./src/app/(public)/reset-password/page.tsx:6:29)