From 1c5c8818769fa20cb112d1ddb0e52d3f756f634b Mon Sep 17 00:00:00 2001 From: samir Date: Tue, 14 Oct 2025 11:22:26 +0000 Subject: [PATCH] fix next.config.js --- next.config.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/next.config.js b/next.config.js index 767719f..1c89844 100644 --- a/next.config.js +++ b/next.config.js @@ -1,4 +1,9 @@ /** @type {import('next').NextConfig} */ -const nextConfig = {} +const nextConfig = { + output: 'export', + images: { + unoptimized: true, + }, +} module.exports = nextConfig