const commitSha = process.env.COMMIT_SHA || ''; /** @type {import('next').NextConfig} */ const nextConfig = { output: 'standalone', env: { NEXT_PUBLIC_COMMIT_SHA: commitSha, }, }; module.exports = nextConfig;