We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60f6ae3 commit cb435cdCopy full SHA for cb435cd
1 file changed
packages/nextjs-cache-handler/src/handlers/composite.ts
@@ -50,5 +50,9 @@ export default function createHandler({
50
async delete(key) {
51
await Promise.all(handlers.map((handler) => handler.delete?.(key)));
52
},
53
+
54
+ async prepare() {
55
+ await Promise.all(handlers.map((handler) => handler.prepare?.()));
56
+ },
57
};
58
}
0 commit comments