From 8d03b1118195f83ded82ed5da77c41f8d9cbadda Mon Sep 17 00:00:00 2001 From: Gnarwhal Date: Sat, 5 Oct 2024 20:06:36 +0000 Subject: [PATCH] Bad nextjs! Bad! Stop caching >:( --- src/app/page.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/app/page.tsx b/src/app/page.tsx index 136339a..620d148 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,6 +1,9 @@ +import { unstable_noStore as no_store } from 'next/cache'; + import * as style from './page.css'; export default function App() { + no_store(); const supports_repointing = process.env.ENABLE_REPOINTING == 'true'; return (