From 3667b3d013d817a50edc9264c81400518c173ad5 Mon Sep 17 00:00:00 2001 From: Peter Nashaat Date: Thu, 12 Sep 2024 07:14:53 +0000 Subject: [PATCH] missing next config for building output directory --- next.config.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/next.config.js b/next.config.js index 767719f..33cca54 100644 --- a/next.config.js +++ b/next.config.js @@ -1,4 +1,6 @@ /** @type {import('next').NextConfig} */ -const nextConfig = {} +const nextConfig = { + output: 'export', +}; -module.exports = nextConfig +module.exports = nextConfig;