From a2bba00655353f019b319bd0c7a85dc97410b69a Mon Sep 17 00:00:00 2001 From: kareraolivier Date: Fri, 15 Mar 2024 08:23:09 +0200 Subject: [PATCH] feat: add the output --- next.config.mjs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/next.config.mjs b/next.config.mjs index 0b1bc30..722cc89 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -1,8 +1,9 @@ /** @type {import('next').NextConfig} */ const nextConfig = { + output: "export", reactStrictMode: true, basePath: "/co-design-FE", assetPrefix: "/co-design-FE/", }; -export default nextConfig; +module.exports = nextConfig;