gh_UserManager/apps/web/next.config.mjs
bermooda-company 54d5891edf user
2026-08-23 23:59:14 +03:30

10 lines
217 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
env: {
NEXT_PUBLIC_SITE_NAME: process.env.NEXT_PUBLIC_SITE_NAME || "Identity Platform",
},
};
export default nextConfig;