diff --git a/.gitignore b/.gitignore index fd3dbb5..fde1b0a 100644 --- a/.gitignore +++ b/.gitignore @@ -14,7 +14,7 @@ /out/ # production -/build +# /build # misc .DS_Store diff --git a/next.config.mjs b/next.config.mjs index 4678774..64a99e7 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -1,4 +1,8 @@ /** @type {import('next').NextConfig} */ -const nextConfig = {}; +const nextConfig = { + basePath: "/rcrd-beta", + output: "export", // <=== enables static exports + reactStrictMode: true, +}; export default nextConfig;