fix: remove distDir from Next.js configuration

This commit is contained in:
averel10
2025-11-11 20:06:48 +01:00
parent 3b44333752
commit 7cf8e65486

View File

@@ -3,7 +3,6 @@ import type { NextConfig } from "next";
const nextConfig: NextConfig = { const nextConfig: NextConfig = {
basePath: "/crypto_clash", basePath: "/crypto_clash",
assetPrefix: "/crypto_clash", assetPrefix: "/crypto_clash",
distDir: "/crypto_clash",
output: "export", // <=== enables static exports output: "export", // <=== enables static exports
reactStrictMode: true, reactStrictMode: true,
}; };