Files

12 lines
221 B
JavaScript
Raw Permalink Normal View History

const commitSha = process.env.COMMIT_SHA || '';
2026-08-18 18:33:49 -07:00
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'standalone',
env: {
NEXT_PUBLIC_COMMIT_SHA: commitSha,
},
2026-08-18 18:33:49 -07:00
};
module.exports = nextConfig;