Skip to content

Commit

Permalink
feat: readd revalidation
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonappah committed Mar 23, 2023
1 parent ed22f1e commit b87960f
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions pages/api/revalidate-links.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
import { NextApiRequest, NextApiResponse } from 'next';

export default async function handler(
req: NextApiRequest,
res: NextApiResponse
) {
if (
!req.headers.authorization ||
req.headers.authorization !==
`Bearer ${process.env.REVALIDATION_TOKEN || ''}`
) {
return res.status(401).json({ message: 'Invalid token' });
}

try {
await res.revalidate('/links/json');
return res.json({ revalidated: true });
} catch (err) {
return res.status(500).send('Error revalidating');
}
}

0 comments on commit b87960f

Please sign in to comment.