From 37acbd29458bdd5a4d36b8c4e27a98fcda0e8583 Mon Sep 17 00:00:00 2001 From: Neo Date: Thu, 19 Feb 2026 09:50:21 +0000 Subject: [PATCH] Fix: next.config.mjs + use client directive --- app/page.tsx | 2 ++ next.config.ts => next.config.mjs | 0 2 files changed, 2 insertions(+) rename next.config.ts => next.config.mjs (100%) diff --git a/app/page.tsx b/app/page.tsx index e5abcb0..c4925d3 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -1,3 +1,5 @@ +"use client"; + import { useState, useEffect } from 'react'; // Types diff --git a/next.config.ts b/next.config.mjs similarity index 100% rename from next.config.ts rename to next.config.mjs