mirror of
https://github.com/penxio/penx.git
synced 2026-04-19 03:03:06 -04:00
8 lines
137 B
TypeScript
8 lines
137 B
TypeScript
'use server'
|
|
|
|
import { revalidateTag } from 'next/cache'
|
|
|
|
export async function revalidateMetadata(key: string) {
|
|
revalidateTag(key)
|
|
}
|