From 8d131b1782cea5d7878a54441a38a56d4429f45d Mon Sep 17 00:00:00 2001 From: Kamgang Nintcheu David Date: Sun, 31 Dec 2023 02:49:27 +0100 Subject: [PATCH] config --- next.config.js | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/next.config.js b/next.config.js index 934db83..f00e90b 100644 --- a/next.config.js +++ b/next.config.js @@ -1,5 +1,13 @@ // next.config.js module.exports = { basePath: '/Flopsky.github.io', - // other configurations... + // Your other configurations... + + // Add the following lines for static HTML export + exportPathMap: async function () { + return { + '/': { page: '/' }, + // Add other pages as needed + }; + }, };