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 de28051 commit 4d70dd8Copy full SHA for 4d70dd8
nuxt.config.ts
@@ -55,7 +55,7 @@ export default defineNuxtConfig({
55
},
56
57
58
- devtools: { enabled: !true },
+ devtools: { enabled: true },
59
60
devServer: {
61
// Used with atproto oauth
@@ -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-comments': {
140
+ isr: {
141
+ expiration: 60 * 60 /* one hour */,
142
+ passQuery: true,
143
+ allowQuery: ['uri'],
144
+ },
145
+ cache: { maxAge: 3600 },
146
147
'/api/atproto/bluesky-author-profiles': {
148
isr: {
149
expiration: 60 * 60 /* one hour */,
0 commit comments