Skip to content

Commit

Permalink
add force-dynamic
Browse files Browse the repository at this point in the history
  • Loading branch information
ocodista committed Feb 18, 2024
1 parent 03ea04c commit a33e0f8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion apps/web/app/blog/entrevistas/ArticleHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@ import React from 'react'
import { kv } from '@vercel/kv'
import { getImageUrl } from './utils'

export const revalidate = 0 // Needed to increase counter
export const revalidate = 1 // Needed to increase counter

// Opt out of caching for all data requests in the route segment
export const dynamic = 'force-dynamic'

export async function ArticleHeader({
author,
Expand Down

0 comments on commit a33e0f8

Please sign in to comment.