From 51bbab7a2817bb9e5ac997351548ee8a29257a22 Mon Sep 17 00:00:00 2001 From: Alaguraj0361 Date: Fri, 29 Aug 2025 15:46:59 +0530 Subject: [PATCH] trailingslash and out folder generate code updated --- next.config.js | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/next.config.js b/next.config.js index 767719f..ded3b24 100644 --- a/next.config.js +++ b/next.config.js @@ -1,4 +1,10 @@ /** @type {import('next').NextConfig} */ -const nextConfig = {} +const nextConfig = { + output: "export", + trailingSlash: true, + images: { + unoptimized: true, + }, +}; -module.exports = nextConfig +export default nextConfig;