next.js/examples/cms-agilitycms/pages/api/exit-preview.ts
exit-preview.ts14 lines340 B
import type { NextApiRequest, NextApiResponse } from "next";

export default async function handler(
  _req: NextApiRequest,
  res: NextApiResponse,
) {
  // Exit Draft Mode by removing the cookie
  res.setDraftMode({ enable: false });

  // Redirect the user back to the index page.
  res.writeHead(307, { Location: "/" });
  res.end();
}
Quest for Codev2.0.0
/
SIGN IN