15 lines
439 B
TypeScript
15 lines
439 B
TypeScript
import { draftMode } from 'next/headers'
|
|
import { redirect } from 'next/navigation'
|
|
const { CONTENTFUL_PREVIEW_SECRET } = process.env
|
|
|
|
export async function GET(request: Request) {
|
|
const { searchParams } = new URL(request.url)
|
|
if (searchParams.get('previewSecret') !== CONTENTFUL_PREVIEW_SECRET) {
|
|
return new Response('Invalid token', { status: 401 })
|
|
}
|
|
|
|
draftMode().enable()
|
|
|
|
redirect(searchParams.get('redirect') || '/')
|
|
}
|