Visual Journal deploy
Deploy 5554830 to Docker Space
e4e0afe
Raw
History Blame Contribute Delete
433 Bytes
import { NextResponse } from 'next/server';
const deployMarker = {"schema_version":1,"local_sha":"555483031327561b81a266eb15c58ed3019536b7","created_at":"2026-07-29T04:53:28.602Z","deploy_id":"e74cf06b-8aed-4779-b443-772bcb0ee272"} as const;
export const dynamic = 'force-dynamic';
export function GET() {
return NextResponse.json(deployMarker, {
headers: {
'Cache-Control': 'no-store'
}
});
}