From 70871d179fa332fc2e408d657fce642387833a9c Mon Sep 17 00:00:00 2001 From: Alaguraj0361 Date: Thu, 18 Dec 2025 20:27:32 +0530 Subject: [PATCH] next config file out staatic export feature updated --- next.config.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/next.config.ts b/next.config.ts index e9ffa30..9ac2d16 100644 --- a/next.config.ts +++ b/next.config.ts @@ -2,6 +2,11 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { /* config options here */ + output: "export", // keep: needed for next export + trailingSlash: true, + images: { + unoptimized: true, // ✅ needed + }, }; export default nextConfig;