The icons added by Next.js to your app
New Courses Coming Soon
Join the waiting lists
Learn what the icons generated by Next.js in development mode mean
When working on a Next.js app, do you see that little icon at the bottom right of the page, which looks like a lightning?
If you hover it, it’s going to say “Prerendered page”:
This icon, which is only visible in development mode of course, tells you the page qualifies for automatic static optimization, which basically means that it does not depend on data that needs to be fetched at invokation time, and it can be prerendered and built as a static HTML file at build time (when we run npm run build
).
Next can determine this by the absence of the getInitialProps()
method attached to the page component.
When this is the case, our page can be even faster because it will be served statically as an HTML file rather than going through the Node.js server that generates the HTML output.
Another useful icon that might appear next to it, or instead of it on non-prerended pages, is a little animated triangle:
This is a compilation indicator, and appears when you save a page and Next.js is compiling the application before hot code reloading kicks in to reload the code in the application automatically.
It’s a really nice way to immediately determine if the app has already been compiled and you can test a part of it you’re working on.
Here is how can I help you:
- COURSES where I teach everything I know
- CODING BOOTCAMP cohort course - next edition in 2025
- THE VALLEY OF CODE your web development manual
- BOOKS 17 coding ebooks you can download for free on JS Python C PHP and lots more
- Interesting links collection
- Follow me on X