260320:1554 Refactor Overrall #08-2 Fix: pnpm frontend deploy
Build and Deploy / deploy (push) Failing after 1m23s
Build and Deploy / deploy (push) Failing after 1m23s
This commit is contained in:
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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,
|
||||
}: {
|
||||
|
||||
Reference in New Issue
Block a user