diff --git a/next.config.mjs b/next.config.mjs index 5b4a4dc..1ed9d97 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -1,8 +1,8 @@ /** @type {import('next').NextConfig} */ const nextConfig = { basePath: "/travelBuddy", - output: "export", reactStrictMode: true, + images: { unoptimized: true } }; export default nextConfig; diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 39dcf60..4c7d7c0 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,3 +1,4 @@ +"use client"; import Header from "../components/Header"; import HomePage from "@/pages/HomePage"; @@ -22,6 +23,7 @@ const inter = Inter({ subsets: ["latin"] });
+
{children}