import { serialize } from 'cookie' import { getConfig } from '../..' import { LogoutHandlers } from '../logout' const logoutHandler: LogoutHandlers['logout'] = async ({ res, body: { redirectTo }, config, }) => { config = getConfig(config) await config.storeApiFetch('/v2/auth/logout', { method: 'GET', }) // Remove the cookie res.setHeader( 'Set-Cookie', serialize(config.customerCookie, '', { maxAge: -1, path: '/' }) ) // Only allow redirects to a relative URL if (redirectTo?.startsWith('/')) { res.redirect(redirectTo) } else { res.status(200).json({ data: null }) } } export default logoutHandler