/
githubmirror
/
next.js
Обзор
Документация
Войти
/
githubmirror
/
next.js
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
canary
examples/cms-graphcms/pages/api/exit-preview.js
8 строк
235 B
Steven
chore(examples): use default prettier for examples/templates (#60530)
12 янв 2024, 02:01
Не верифицирован
12 янв 2024, 02:01
4466ba4
Код
Авторство
О чём код?
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(); }