updates
This commit is contained in:
13
frontEnd/app/support-center/layout.tsx
Normal file
13
frontEnd/app/support-center/layout.tsx
Normal file
@@ -0,0 +1,13 @@
|
||||
// Force dynamic rendering for support-center pages
|
||||
export const dynamic = 'force-dynamic';
|
||||
export const dynamicParams = true;
|
||||
export const revalidate = 0;
|
||||
|
||||
export default function SupportCenterLayout({
|
||||
children,
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}) {
|
||||
return <>{children}</>;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user