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 97d31e3 commit b23d693Copy full SHA for b23d693
nuxt.config.ts
@@ -133,7 +133,7 @@ export default defineNuxtConfig({
133
},
134
135
// pages
136
- '/package/**': getISRConfig(60),
+ '/package/**': getISRConfig(60, { fallback: 'html' }),
137
// infinite cache (versioned - doesn't change)
138
'/package-code/**': { isr: true, cache: { maxAge: 365 * 24 * 60 * 60 } },
139
'/package-docs/**': { isr: true, cache: { maxAge: 365 * 24 * 60 * 60 } },
@@ -164,6 +164,10 @@ export default defineNuxtConfig({
164
typescriptPlugin: true,
165
viteEnvironmentApi: true,
166
typedPages: true,
167
+ // noVueServer
168
+ // renderJsonPayloads
169
+ payloadExtraction: false,
170
+ renderJsonPayloads: false,
171
172
173
compatibilityDate: '2026-01-31',
0 commit comments