feat: add commit hash to environment variables and create HealthPage component to display it
This commit is contained in:
7
app/health/page.tsx
Normal file
7
app/health/page.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
const HealthPage = () => {
|
||||
const commit = process.env.NEXT_PUBLIC_COMMIT_HASH;
|
||||
|
||||
return <div>{commit}</div>;
|
||||
};
|
||||
|
||||
export default HealthPage;
|
||||
Reference in New Issue
Block a user