From 50e9aa19b6148ba0d67e90aa7bf3078fcc57b08c Mon Sep 17 00:00:00 2001 From: CloudLun Date: Thu, 30 Nov 2023 11:23:19 -0500 Subject: [PATCH] add config output export --- next.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/next.config.js b/next.config.js index 21af9cd..3c3d180 100644 --- a/next.config.js +++ b/next.config.js @@ -1,6 +1,7 @@ /** @type {import('next').NextConfig} */ const nextConfig = { trailingSlash: true, + output: "export", }; module.exports = nextConfig;