Force dynamic
This commit is contained in:
parent
2d94e6e928
commit
e461448f93
3 changed files with 2 additions and 2 deletions
|
@ -8,6 +8,7 @@ const queryClient = new QueryClient();
|
||||||
|
|
||||||
export const revalidate = 0;
|
export const revalidate = 0;
|
||||||
export const fetchCache = "force-no-store";
|
export const fetchCache = "force-no-store";
|
||||||
|
export const dynamic = "force-dynamic";
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
|
|
|
@ -11,6 +11,7 @@ export const metadata = {
|
||||||
|
|
||||||
export const revalidate = 0;
|
export const revalidate = 0;
|
||||||
export const fetchCache = "force-no-store";
|
export const fetchCache = "force-no-store";
|
||||||
|
export const dynamic = "force-dynamic";
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
|
|
|
@ -1,5 +1,3 @@
|
||||||
export const dynamic = "force-static";
|
|
||||||
|
|
||||||
export default function Home() {
|
export default function Home() {
|
||||||
return (
|
return (
|
||||||
<div className="flex flex-col text-center items-center justify-center px-4 py-16 gap-4">
|
<div className="flex flex-col text-center items-center justify-center px-4 py-16 gap-4">
|
||||||
|
|
Loading…
Add table
Reference in a new issue