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 bd70667 commit 7bbff92Copy full SHA for 7bbff92
2 files changed
nuxt.config.ts
@@ -205,8 +205,6 @@ export default defineNuxtConfig({
205
compatibilityDate: '2026-01-31',
206
207
nitro: {
208
- debug: true,
209
- logLevel: 999,
210
externals: {
211
inline: [
212
'shiki',
server/api/atproto/bluesky-author-profiles.get.ts
@@ -73,9 +73,9 @@ export default defineCachedEventHandler(
73
{
74
name: 'author-profiles',
75
maxAge: CACHE_MAX_AGE_ONE_DAY,
76
- // getKey: event => {
77
- // const { authors } = getQuery(event)
78
- // return `author-profiles:${authors ?? 'npmx.dev'}`
79
- // },
+ getKey: event => {
+ const { authors } = getQuery(event)
+ return `author-profiles:${authors ?? 'npmx.dev'}`
+ },
80
},
81
)
0 commit comments