We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6fb0d41 commit 1683343Copy full SHA for 1683343
package.json
@@ -1,7 +1,7 @@
1
{
2
"name": "@thecodeorigin/nuxt",
3
"type": "module",
4
- "version": "1.11.9",
+ "version": "1.11.10",
5
"publishConfig": {
6
"registry": "https://registry.npmjs.org",
7
"access": "public"
server/utils/storage.ts
@@ -39,3 +39,9 @@ export async function clearCache(key: string) {
39
40
await storage.removeItem(key)
41
}
42
+
43
+export async function getParallelCacheKeys(key: string) {
44
+ const storage = getStorage()
45
46
+ return await storage.getKeys(key)
47
+}
0 commit comments