mirror of
https://github.com/averel10/crypto_clash.git
synced 2026-03-12 19:08:11 +01:00
10 lines
211 B
TypeScript
10 lines
211 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
basePath: "/crypto_clash",
|
|
output: "export", // <=== enables static exports
|
|
reactStrictMode: true,
|
|
};
|
|
|
|
export default nextConfig;
|