From 9518873dc3ab65fb71ae3da52ca132ed43b5a410 Mon Sep 17 00:00:00 2001 From: Citali Date: Sun, 28 Dec 2025 19:01:11 +0100 Subject: [PATCH] Some refactor --- next.config.ts | 4 ++++ src/app/layout.tsx | 3 +++ 2 files changed, 7 insertions(+) diff --git a/next.config.ts b/next.config.ts index e9ffa30..6a30769 100644 --- a/next.config.ts +++ b/next.config.ts @@ -4,4 +4,8 @@ const nextConfig: NextConfig = { /* config options here */ }; +module.exports = { + output: "standalone", +}; + export default nextConfig; diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 66c5385..6da05b1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,3 +1,6 @@ +export const dynamic = "force-dynamic"; +export const revalidate = 0; + import { ThemeProvider } from "@/components/global/ThemeProvider"; import type { Metadata } from "next"; import { Geist, Geist_Mono } from "next/font/google";