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 185d4b8 commit 40e3319Copy full SHA for 40e3319
1 file changed
modules/cache.ts
@@ -4,8 +4,6 @@ import { provider } from 'std-env'
4
5
// Storage key for fetch cache - must match shared/utils/fetch-cache-config.ts
6
const FETCH_CACHE_STORAGE_BASE = 'fetch-cache'
7
-// Storage key for OAuth cache - must match server/utils/atproto/storage.ts
8
-const OAUTH_CACHE_STORAGE_BASE = 'atproto:oauth'
9
10
export default defineNuxtModule({
11
meta: {
@@ -39,11 +37,6 @@ export default defineNuxtModule({
39
37
...nitroConfig.storage[FETCH_CACHE_STORAGE_BASE],
40
38
driver: 'vercel-runtime-cache',
41
}
42
-
43
- nitroConfig.storage[OAUTH_CACHE_STORAGE_BASE] = {
44
- ...nitroConfig.storage[OAUTH_CACHE_STORAGE_BASE],
45
- driver: 'vercel-runtime-cache',
46
- }
47
48
49
const env = process.env.VERCEL_ENV
0 commit comments