From 4d89745a57d2fe8d5325068895869531ee66ee90 Mon Sep 17 00:00:00 2001 From: ehab-hassan Date: Mon, 20 Oct 2025 18:31:29 +0300 Subject: [PATCH] fix download link --- next.config.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/next.config.js b/next.config.js index 1c89844..8c9a175 100644 --- a/next.config.js +++ b/next.config.js @@ -1,9 +1,12 @@ + /** @type {import('next').NextConfig} */ const nextConfig = { output: 'export', + trailingSlash: true, images: { unoptimized: true, }, } module.exports = nextConfig +