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 28010a9
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions nuxt.config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
export default defineNuxtConfig({
compatibilityDate: '2024-08-26',

nitro: {
prerender: {
concurrency: 4,
}
},

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

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

0 comments on commit 28010a9

Please sign in to comment.