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
|
// 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({
|
export default function AuthLayout({
|
||||||
children,
|
children,
|
||||||
}: {
|
}: {
|
||||||
@@ -10,4 +16,4 @@ export default function AuthLayout({
|
|||||||
{children}
|
{children}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,11 @@
|
|||||||
import { Header } from "@/components/layout/header";
|
import { Header } from "@/components/layout/header";
|
||||||
import { Sidebar } from "@/components/layout/sidebar";
|
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({
|
export default function DashboardLayout({
|
||||||
children,
|
children,
|
||||||
}: {
|
}: {
|
||||||
|
|||||||
Reference in New Issue
Block a user