// @ts-nocheck /* eslint-disable */ const { unstable_cacheTag, unstable_cacheLife, revalidatePath } = require('next/cache') export function MyComponent() { const tag = unstable_cacheTag('my-tag') const life = unstable_cacheLife('2 hours') // This should remain unchanged revalidatePath('/app') return (
Using cache tag: {tag}
Using cache life: {life}