From d0090d687ab4ac188de62d5fbdcb50541414aee1 Mon Sep 17 00:00:00 2001 From: Vordgi Date: Fri, 6 Feb 2026 12:41:27 +0000 Subject: [PATCH] fix: add isr to oauth metadata --- nuxt.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nuxt.config.ts b/nuxt.config.ts index 79be518fa6..33187676c5 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -97,7 +97,7 @@ export default defineNuxtConfig({ '/__og-image__/**': { isr: getISRConfig(60) }, '/_avatar/**': { isr: 3600, proxy: 'https://www.gravatar.com/avatar/**' }, '/opensearch.xml': { isr: true }, - '/oauth-client-metadata.json': { prerender: true }, + '/oauth-client-metadata.json': { isr: getISRConfig(60, true), prerender: true }, // never cache '/api/auth/**': { isr: false, cache: false }, '/api/social/**': { isr: false, cache: false },