260320:1554 Refactor Overrall #08-2 Fix: pnpm frontend deploy
Build and Deploy / deploy (push) Failing after 1m23s

This commit is contained in:
admin
2026-03-20 15:54:49 +07:00
parent 47d60993dc
commit 3320b552ce
2 changed files with 12 additions and 1 deletions
+7 -1
View File
@@ -1,4 +1,10 @@
// File: app/(auth)/layout.tsx
// Force dynamic rendering for all pages under (auth) route group.
// QNAP overlayfs cannot handle the .segments/!<base64> directories
// that Next.js 16 creates during static page generation.
export const dynamic = "force-dynamic";
export default function AuthLayout({
children,
}: {
@@ -10,4 +16,4 @@ export default function AuthLayout({
{children}
</div>
);
}
}
+5
View File
@@ -1,6 +1,11 @@
import { Header } from "@/components/layout/header";
import { Sidebar } from "@/components/layout/sidebar";
// Force dynamic rendering for all pages under (dashboard) route group.
// QNAP overlayfs cannot handle the .segments/!<base64> directories
// that Next.js 16 creates during static page generation.
export const dynamic = "force-dynamic";
export default function DashboardLayout({
children,
}: {