| export default async function handler(_, res) { | |
| // 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(); | |
| } | |
| export default async function handler(_, res) { | |
| // 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(); | |
| } | |