Files
riotpiao.com/next.config.js
T
Story Crater Bot 406f0db52d
Build & Push Portfolio Image / build-push (push) Successful in 3m29s
fix: hide SHA when unavailable (show CI fallback), Home scrolls to top
2026-09-02 10:32:11 -07:00

12 lines
221 B
JavaScript

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