[READ-ONLY] a fast, modern browser for the npm registry

fix: use new upstash env variable

+2 -2
+2 -2
nuxt.config.ts
··· 30 30 sessionPassword: '', 31 31 // Upstash Redis for distributed OAuth token refresh locking in production 32 32 upstash: { 33 - redisRestUrl: process.env.KV_REST_API_URL || '', 34 - redisRestToken: process.env.KV_REST_API_TOKEN || '', 33 + redisRestUrl: process.env.UPSTASH_KV_REST_API_URL || process.env.KV_REST_API_URL || '', 34 + redisRestToken: process.env.UPSTASH_KV_REST_API_TOKEN || process.env.KV_REST_API_TOKEN || '', 35 35 }, 36 36 }, 37 37