mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-08-05 20:18:19 -04:00
5 lines
219 B
TypeScript
5 lines
219 B
TypeScript
export default async (name: string, key: string = 'default') => {
|
|
// https://nitro.unjs.io/guide/cache#cache-keys-and-invalidation
|
|
await useStorage('cache').removeItem(`nitro:functions:${name}:${key}.json`);
|
|
};
|