From 7cf8e6548650fea544539a2fe4ef27e1e3e399cf Mon Sep 17 00:00:00 2001 From: averel10 Date: Tue, 11 Nov 2025 20:06:48 +0100 Subject: [PATCH] fix: remove distDir from Next.js configuration --- crypto_clash_frontend/next.config.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/crypto_clash_frontend/next.config.ts b/crypto_clash_frontend/next.config.ts index 81cd96a..6d0c4f1 100644 --- a/crypto_clash_frontend/next.config.ts +++ b/crypto_clash_frontend/next.config.ts @@ -3,7 +3,6 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { basePath: "/crypto_clash", assetPrefix: "/crypto_clash", - distDir: "/crypto_clash", output: "export", // <=== enables static exports reactStrictMode: true, };