Skip to content

Commit

Permalink
fix(docs): add nextjs 11 link (#5978)
Browse files Browse the repository at this point in the history
  • Loading branch information
ragingwind authored and Zertsov committed Sep 27, 2023
1 parent 33912c3 commit d5ae917
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/pages/pack/docs/core-concepts.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ There are two ways to make a process faster - work faster, or do less work. For

### Page-level compilation

Versions of Next.js from 2-3 years ago used to compile the _entire application_ before showing your dev server. In Next.js [11], we began compiling _only the code on the page you requested._
Versions of Next.js from 2-3 years ago used to compile the _entire application_ before showing your dev server. In [Next.js 11](https://nextjs.org/blog/next-11), we began compiling _only the code on the page you requested._

That’s better, but it’s not perfect. When you navigate to `/users`, we’ll bundle all the client and server modules, dynamic-imported modules, and referenced CSS and images. That means if a large part of your page is hidden from view, or hidden behind tabs, we’ll still compile it anyway.

Expand Down

0 comments on commit d5ae917

Please sign in to comment.