Next.js Discord

Discord Forum

How can I confirm which all pages are like statically rendered on build logs without any truncate'.?

Answered
muadpn posted this in #help-forum
Open in Discord
├ ● /[locale]/projects/[level]               144 B          87.1 kB
├   ├ /en/projects/beginner
├   ├ /en/projects/intermediate
├   ├ /en/projects/advanced
├   └ [+3 more paths]
└ ● /[locale]/projects/[level]/[pagination]  182 B          98.4 kB
    ├ /en/projects/beginner/0
    ├ /en/projects/beginner/1
    ├ /en/projects/intermediate/0
    └ [+7 more paths]

soo instead of +3 more path || +7 more path how would i extend this ? is there any argument that i can pass ?
Answered by joulev
no, such an option doesn't exist. the number is hardcoded in the nextjs source code
View full answer

8 Replies

Yea, What i mean, is can i know like all the pages thats been statically rendered Soo I can confirm that i didnt mess up anything. I just know i can do it just by checking out, but extending this would give me easy results. since whatever.......
as an example ,
npm run build --just-dont-be-tired-and-give-me-all-rendered-paths
@muadpn as an example , npm run build --just-dont-be-tired-and-give-me-all-rendered-paths
no, such an option doesn't exist. the number is hardcoded in the nextjs source code
Answer
Okay, Thanks.