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 a875f23 commit 2ea6f11Copy full SHA for 2ea6f11
1 file changed
nuxt.config.ts
@@ -136,6 +136,14 @@ export default defineNuxtConfig({
136
// never cache
137
'/api/auth/**': { isr: false, cache: false },
138
'/api/social/**': { isr: false, cache: false },
139
+ '/api/atproto/bluesky-author-profiles': {
140
+ isr: {
141
+ expiration: 60 * 60 /* one hour */,
142
+ passQuery: true,
143
+ allowQuery: ['authors'],
144
+ },
145
+ cache: { maxAge: 3600 },
146
147
'/api/opensearch/suggestions': {
148
isr: {
149
expiration: 60 * 60 * 24 /* one day */,
0 commit comments