Reubencf's picture
Added elevnlabs
163eb99
import { NextResponse } from 'next/server'
export const dynamic = 'force-dynamic'
export async function GET() {
// Simple endpoint to check if there's new content
// This could be expanded to use a database or file system
return NextResponse.json({ hasNew: false })
}