Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
WakuwakuP committed May 24, 2024
1 parent 36aa66b commit 56fe11d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/app/api/revalidate/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ export async function POST(request: Request) {

revalidatePath('/')
revalidatePath('/feed')
revalidatePath('/content/latest/')
revalidatePath('/content/latest/[page]')
revalidatePath('/content/category/[categoryId]/')
revalidatePath('/content/category/[categoryId]/[page]')
revalidatePath('/content/latest/page', 'page')
revalidatePath('/content/latest/[page]/page', 'page')
revalidatePath('/content/category/[categoryId]/page', 'page')
revalidatePath('/content/category/[categoryId]/[page]/page', 'page')

console.log('revalidate: /')
console.log('revalidate: /feed')
Expand Down

0 comments on commit 56fe11d

Please sign in to comment.