From a18a9c442edd89c8220fef622b7403b68063a665 Mon Sep 17 00:00:00 2001 From: Alaguraj0361 Date: Tue, 9 Jun 2026 13:29:11 +0530 Subject: [PATCH] Configure Next.js settings and add export script to package.json --- next.config.mjs | 6 +++++- package.json | 1 + 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/next.config.mjs b/next.config.mjs index b108e1a..22faeaa 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -1,6 +1,10 @@ /** @type {import('next').NextConfig} */ const nextConfig = { - /* config options here */ + output: 'export', + trailingSlash: true, + images: { + unoptimized: true, // ✅ needed + }, }; export default nextConfig; diff --git a/package.json b/package.json index 0ba2f75..3c5cb49 100644 --- a/package.json +++ b/package.json @@ -6,6 +6,7 @@ "dev": "next dev", "build": "next build", "start": "next start", + "export": "next build", "lint": "eslint" }, "dependencies": {