fix: update Next.js configuration for assetPrefix and distDir

This commit is contained in:
averel10
2025-11-11 20:05:09 +01:00
parent b253a4038f
commit 3b44333752

View File

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