mirror of
https://github.com/penxio/penx.git
synced 2026-01-15 00:18:08 -05: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)
|
|
}
|