/** @type {import('next').NextConfig} */ const nextConfig = { trailingSlash: true, reactStrictMode: false, swcMinify: true, output: "standalone", images: { unoptimized: true, }, basePath: process.env.NEXT_PUBLIC_DEPLOY_WITH_NGINX === "1" ? "/god-mode" : "", }; module.exports = nextConfig;