From 4bfeb56e802ec7fd062e1d0c7d2c0aa0e7d0c54c Mon Sep 17 00:00:00 2001 From: Peter Nashaat Date: Thu, 12 Sep 2024 06:23:33 +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..dc29843 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;