Skip to content

Commit f04e9fc

Browse files
committed
chore: cleanup storage mounts
1 parent 9ef9806 commit f04e9fc

2 files changed

Lines changed: 0 additions & 18 deletions

File tree

modules/cache.ts

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -27,16 +27,6 @@ export default defineNuxtModule({
2727
...nitroConfig.storage[FETCH_CACHE_STORAGE_BASE],
2828
driver: 'vercel-runtime-cache',
2929
}
30-
31-
const env = process.env.VERCEL_ENV
32-
33-
nitroConfig.storage['oauth-atproto-state'] = {
34-
driver: env === 'production' ? 'vercel-kv' : 'vercel-runtime-cache',
35-
}
36-
37-
nitroConfig.storage['oauth-atproto-session'] = {
38-
driver: env === 'production' ? 'vercel-kv' : 'vercel-runtime-cache',
39-
}
4030
})
4131
},
4232
})

nuxt.config.ts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -151,14 +151,6 @@ export default defineNuxtConfig({
151151
driver: 'fsLite',
152152
base: './.cache/fetch',
153153
},
154-
'oauth-atproto-state': {
155-
driver: 'fsLite',
156-
base: './.cache/atproto-oauth/state',
157-
},
158-
'oauth-atproto-session': {
159-
driver: 'fsLite',
160-
base: './.cache/atproto-oauth/session',
161-
},
162154
},
163155
typescript: {
164156
tsConfig: {

0 commit comments

Comments
 (0)