We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 549391f commit 6694c9bCopy full SHA for 6694c9b
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "fayevr.dev",
3
- "version": "0.2.6",
+ "version": "0.2.7",
4
"private": true,
5
"type": "module",
6
"scripts": {
src/app/api/getStatus/health/route.ts
@@ -0,0 +1,5 @@
+import { NextResponse } from 'next/server'
+
+export async function GET() {
+ return NextResponse.json({ status: 'ok' })
+}
0 commit comments