From a76b4733272cd2cfa440da686eebf10a33385837 Mon Sep 17 00:00:00 2001 From: Franklin Barto Date: Sun, 11 Feb 2024 12:59:08 +0300 Subject: [PATCH] Git workflow export fix --- next.config.mjs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/next.config.mjs b/next.config.mjs index 15eff7c..24cea72 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -1,6 +1,7 @@ /** @type {import('next').NextConfig} */ const nextConfig = { - output: 'export' + output: 'export', + distDir: 'build', }; export default nextConfig;