feat: add commit hash to environment variables and create HealthPage component to display it

This commit is contained in:
Danel Kungla
2025-07-21 14:59:29 +03:00
parent 8e4d634a7d
commit 8ee9271c2e
2 changed files with 12 additions and 0 deletions

7
app/health/page.tsx Normal file
View File

@@ -0,0 +1,7 @@
const HealthPage = () => {
const commit = process.env.NEXT_PUBLIC_COMMIT_HASH;
return <div>{commit}</div>;
};
export default HealthPage;