Instantaneous Navigation
Sapper uses prefetching the pages to make navigation instantaneous. Let's see how prefetching works.
We'll cover the following...
Instantaneous navigation by Sapper
Sapper automatically breaks up the application into small chunks, one per route. With that, a user who accesses /about
only needs to download the HTML, JavaScript, & CSS required to display the about page.
Example
To go a step ...