You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This reads as if each page is taking an X seconds to generate but it seems as though it's just a running clock. I would imagine this should instead be:
What version of
astro
are you using?2.2.3
Are you using an SSR adapter? If so, which one?
None
What package manager are you using?
npm
What operating system are you using?
Mac
What browser are you using?
Chrome
Describe the Bug
When running my build the build times per page are misleading.
21.87 generating static routes 24.36 ▶ src/pages/company/[companyName]/page.astro 30.32 ├─ /company/a/page/index.html (+5.96s) 30.49 ├─ /company/b/page/index.html (+6.13s) 30.65 ├─ /company/c/page/index.html (+6.29s) 30.79 ├─ /company/d/page/index.html (+6.43s) # ... 102.4 └─ /company/zzzz/page/index.html (+78.06s)
This reads as if each page is taking an X seconds to generate but it seems as though it's just a running clock. I would imagine this should instead be:
21.87 generating static routes 24.36 ▶ src/pages/company/[companyName]/page.astro (+5.8s) 30.32 ├─ /company/a/page/index.html (+160ms) 30.49 ├─ /company/b/page/index.html (+170ms) 30.65 ├─ /company/c/page/index.html (+160ms) 30.79 ├─ /company/d/page/index.html (+140ms) # ... 102.4 └─ /company/zzzz/page/index.html (+110ms)
Following with the totals
Link to Minimal Reproducible Example
https://stackblitz.com/edit/github-vrmtvm (NOTE: This runs very quickly compared to my application but still represents the issue)
Participation
The text was updated successfully, but these errors were encountered: