Skip to content

Commit

Permalink
Limit concurrency in prerendering
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-lerch committed Sep 2, 2024
1 parent c13d1fe commit 20bb5b1
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions nuxt.config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
export default defineNuxtConfig({
compatibilityDate: '2024-08-26',

nitro: {
prerender: {
concurrency: 1,
interval: 100,
}
},

runtimeConfig: {
baseUrl: process.env.BASE_URL || 'http://localhost:3000',
},
Expand Down Expand Up @@ -55,6 +64,4 @@ export default defineNuxtConfig({
langDir: 'content/translations/',
lazy: true,
},

compatibilityDate: '2024-08-26',
})

0 comments on commit 20bb5b1

Please sign in to comment.