Skip to content

Commit

Permalink
Crawl internal links + reduce concurrency
Browse files Browse the repository at this point in the history
  • Loading branch information
rijkvanzanten committed Jul 20, 2023
1 parent 2d4499b commit d8032b8
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ const fetchPagePermalinks = async () => {

export default defineNuxtConfig({
devtools: { enabled: true },
ssr: true,

css: ['~/assets/css/main.css'],

Expand All @@ -43,4 +44,11 @@ export default defineNuxtConfig({
nitroConfig.prerender?.routes?.push(...permalinks);
},
},

nitro: {
prerender: {
crawlLinks: true,
concurrency: 1,
},
},
});

0 comments on commit d8032b8

Please sign in to comment.