Search⌘ K
AI Features

Instantaneous Navigation

Discover how to implement instantaneous navigation using Sapper's automatic code splitting and prefetching features. Learn to enhance user experience by loading page resources and data before users click links, ensuring smooth transitions in your cloud-native web application.

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 ...