// @ts-check /** * @type {import("next").NextConfig} */ const nextConfig = { reactStrictMode: true, distDir: process.env.NODE_ENV == "production" ? "dist/web" : undefined, }; export default nextConfig;