File size: 282 Bytes
163eb99
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
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 })
}