File size: 146 Bytes
1e92f2d
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import { revalidatePath } from 'next/cache'

export async function GET() {
  revalidatePath('/')

  return Response.json({ revalidated: true })
}