In order to make Next.js very performant, we need to address the following problems: - When you run `next`, everything gets compiled eagerly - Every time you save a file, whether it's relevant to the rendered routes in your browser or not, it gets _eagerly_ compiled The beautiful thing about our new compilation output is that it makes these problems _very obvious and clear_ :)