From a77794c01eb09d00167ff7b2882557664a9d21ec Mon Sep 17 00:00:00 2001 From: titix Date: Mon, 18 Mar 2024 09:47:23 -0300 Subject: [PATCH] fix: next.config default --- next.config.mjs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/next.config.mjs b/next.config.mjs index 1aa6eb5..4678774 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -1,7 +1,4 @@ /** @type {import('next').NextConfig} */ -const nextConfig = { - output: 'export', // Outputs a Single-Page Application (SPA). - distDir: './dist', // Changes the build output directory to `./dist/`. -}; +const nextConfig = {}; export default nextConfig;