Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { NextApiResponse } from "next";
export default async function exit(_, 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();
}