Code splitting and lazy loading is a powerful technique for improving the bundle size and load performance of an application.
TanStack Router separates code into two categories:
Critical Route Configuration - The code that is required to render the current route and kick off the data loading process as early as possible.
Non-Critical/Lazy Route Configuration - The code that is not required to match the route, and can be loaded on-demand.
🧠 Why is the loader not split?
The loader is already an asynchronous boundary, so you pay double to both get the chunk and wait for the loader to execute.
Categorically, it is less likely to contribute to a large bundle size than a component.
The loader is one of the most important preloadable assets for a route, especially if you're using a default preload intent, like hovering over a link, so it's important for the loader to be available without any additional async overhead.
Knowing the disadvantages of splitting the loader, if you still want to go ahead with it, head over to the Data Loader Splitting section.
TanStack Router supports multiple approaches to code splitting. If you are using code-based routing, skip to the Code-Based Splitting section.
When you are using file-based routing, you can use the following approaches to code splitting:
Since TanStack Router's file-based routing system is designed to support both flat and nested file structures, it's possible to encapsulate a route's files into a single directory without any additional configuration.
To encapsulate a route's files into a directory, move the route file itself into a .route file within a directory with the same name as the route file.
For example, if you have a route file named posts.tsx, you would create a new directory named posts and move the posts.tsx file into that directory, renaming it to route.tsx.
Before
After
If you're using the recommended File-Based Routing approach, code splitting is as easy as moving your code into a separate file with a .lazy.tsx suffix and use the createLazyFileRoute function instead of the FileRoute class or createFileRoute function.
Here are the options currently supported by the createLazyFileRoute function:
Export Name | Description |
---|---|
component | The component to render for the route. |
errorComponent | The component to render when an error occurs while loading the route. |
pendingComponent | The component to render while the route is loading. |
notFoundComponent | The component to render if a not-found error gets thrown. |
When you are using .lazy.tsx you can split your route into two files to enable code splitting:
Before (Single File)
// src/routes/posts.tsx
import { createFileRoute } from '@tanstack/react-router'
import { fetchPosts } from './api'
export const Route = createFileRoute('/posts')({
loader: fetchPosts,
component: Posts,
})
function Posts() {
// ...
}
// src/routes/posts.tsx
import { createFileRoute } from '@tanstack/react-router'
import { fetchPosts } from './api'
export const Route = createFileRoute('/posts')({
loader: fetchPosts,
component: Posts,
})
function Posts() {
// ...
}
After (Split into two files)
This file would contain the critical route configuration:
// src/routes/posts.tsx
import { createFileRoute } from '@tanstack/react-router'
import { fetchPosts } from './api'
export const Route = createFileRoute('/posts')({
loader: fetchPosts,
})
// src/routes/posts.tsx
import { createFileRoute } from '@tanstack/react-router'
import { fetchPosts } from './api'
export const Route = createFileRoute('/posts')({
loader: fetchPosts,
})
With the non-critical route configuration going into the file with the .lazy.tsx suffix:
// src/routes/posts.lazy.tsx
import { createLazyFileRoute } from '@tanstack/react-router'
export const Route = createLazyFileRoute('/posts')({
component: Posts,
})
function Posts() {
// ...
}
// src/routes/posts.lazy.tsx
import { createLazyFileRoute } from '@tanstack/react-router'
export const Route = createLazyFileRoute('/posts')({
component: Posts,
})
function Posts() {
// ...
}
You might run into a situation where you end up splitting out everything from a route file, leaving it empty! In this case, simply delete the route file entirely! A virtual route will automatically be generated for you to serve as an anchor for your code split files. This virtual route will live directly in the generated route tree file.
Before (Virtual Routes)
// src/routes/posts.tsx
import { createFileRoute } from '@tanstack/react-router'
export const Route = createFileRoute('/posts')({
// Hello?
})
// src/routes/posts.tsx
import { createFileRoute } from '@tanstack/react-router'
export const Route = createFileRoute('/posts')({
// Hello?
})
// src/routes/posts.lazy.tsx
import { createLazyFileRoute } from '@tanstack/react-router'
export const Route = createLazyFileRoute('/posts')({
component: Posts,
})
function Posts() {
// ...
}
// src/routes/posts.lazy.tsx
import { createLazyFileRoute } from '@tanstack/react-router'
export const Route = createLazyFileRoute('/posts')({
component: Posts,
})
function Posts() {
// ...
}
After (Virtual Routes)
// src/routes/posts.lazy.tsx
import { createLazyFileRoute } from '@tanstack/react-router'
export const Route = createLazyFileRoute('/posts')({
component: Posts,
})
function Posts() {
// ...
}
// src/routes/posts.lazy.tsx
import { createLazyFileRoute } from '@tanstack/react-router'
export const Route = createLazyFileRoute('/posts')({
component: Posts,
})
function Posts() {
// ...
}
Tada! 🎉
When using the autoCodeSplitting feature, TanStack Router will automatically code split your route files based on the non-critical route configuration mentioned above.
Important
The automatic code-splitting feature is ONLY available when you are using file-based routing with one of our supported bundlers. This will NOT work if you are only using the CLI (@tanstack/router-cli).
If this is your first time using TanStack Router, then you can skip the following steps and head over to Enabling automatic code-splitting. If you've already been using TanStack Router, then you might need to make some changes to your route files to enable automatic code-splitting.
When using automatic code-splitting, you should not use the .lazy.tsx suffix. Instead, any routes that are split into two using the .lazy.tsx suffix should be merged back into a single file.
Before using the .lazy suffix
// src/routes/posts.tsx
import { createFileRoute } from '@tanstack/react-router'
export const Route = createFileRoute('/posts')({
loader: fetchPosts,
})
// src/routes/posts.tsx
import { createFileRoute } from '@tanstack/react-router'
export const Route = createFileRoute('/posts')({
loader: fetchPosts,
})
// src/routes/posts.lazy.tsx
import { createLazyFileRoute } from '@tanstack/react-router'
export const Route = createLazyFileRoute('/posts')({
component: Posts,
})
function Posts() {
// ...
}
// src/routes/posts.lazy.tsx
import { createLazyFileRoute } from '@tanstack/react-router'
export const Route = createLazyFileRoute('/posts')({
component: Posts,
})
function Posts() {
// ...
}
After removing the .lazy suffix
// src/routes/posts.tsx
import { createFileRoute } from '@tanstack/react-router'
export const Route = createFileRoute('/posts')({
loader: fetchPosts,
component: Posts,
})
function Posts() {
// ...
}
// src/routes/posts.tsx
import { createFileRoute } from '@tanstack/react-router'
export const Route = createFileRoute('/posts')({
loader: fetchPosts,
component: Posts,
})
function Posts() {
// ...
}
Also, if you were previously using virtual routes, you should then have their .lazy.tsx suffixes removed.
Before using Virtual Routes
// src/routes/posts.lazy.tsx
import { createLazyFileRoute } from '@tanstack/react-router'
export const Route = createLazyFileRoute('/posts')({
/* ... */
})
// src/routes/posts.lazy.tsx
import { createLazyFileRoute } from '@tanstack/react-router'
export const Route = createLazyFileRoute('/posts')({
/* ... */
})
After without Virtual Routes
// src/routes/posts.tsx
import { createFileRoute } from '@tanstack/react-router'
export const Route = createFileRoute('/posts')({
/* ... */
})
// src/routes/posts.tsx
import { createFileRoute } from '@tanstack/react-router'
export const Route = createFileRoute('/posts')({
/* ... */
})
Once you've done this, your route files are ready for automatic code-splitting.
Important
At this time, when using automatic code-splitting, ALL of your route files will be code-split. This means that you should only use this feature if you are sure that you want to code-split all of your route files.
To enable automatic code-splitting, you can add the following to your tsr.config.json:
{
// ...
"autoCodeSplitting": true,
}
{
// ...
"autoCodeSplitting": true,
}
That's it! TanStack Router will automatically code-split all your route files by their critical and non-critical route configurations.
If you're not using the file-based routing system, you can still manually split your code using the route.lazy() method and the createLazyRoute function. You'd need to:
Create a lazy route using the createLazyRoute function.
// src/posts.tsx
export const Route = createLazyRoute('/posts')({
component: MyComponent,
})
function MyComponent() {
return <div>My Component</div>
}
// src/posts.tsx
export const Route = createLazyRoute('/posts')({
component: MyComponent,
})
function MyComponent() {
return <div>My Component</div>
}
Then, call the .lazy method on the route definition in your app.tsx to import the lazy/code-split route with the non-critical route configuration.
// src/app.tsx
const postsRoute = createRoute({
getParent: () => rootRoute,
path: '/posts',
}).lazy(() => import('./posts.lazy').then((d) => d.Route))
// src/app.tsx
const postsRoute = createRoute({
getParent: () => rootRoute,
path: '/posts',
}).lazy(() => import('./posts.lazy').then((d) => d.Route))
⚠️ Splitting a data loader will incur 2 round trips to the server to retrieve the loader data. One round trip to load the loader code bundle itself and another to execute the loader code and retrieve the data. Do not proceed unless you are VERY sure that your loader is contributing to the bundle size enough to warrant these round trips.
You can code split your data loading logic using the Route's loader option. While this process makes it difficult to maintain type-safety with the parameters passed to your loader, you can always use the generic LoaderContext type to get most of the way there:
import { LoaderContext } from '@tanstack/react-router'
const route = createRoute({
path: '/my-route',
component: MyComponent,
loader: (...args) => import('./loader').then((d) => d.loader(...args)),
})
// In another file...
export const loader = async (context: LoaderContext) => {
/// ...
}
import { LoaderContext } from '@tanstack/react-router'
const route = createRoute({
path: '/my-route',
component: MyComponent,
loader: (...args) => import('./loader').then((d) => d.loader(...args)),
})
// In another file...
export const loader = async (context: LoaderContext) => {
/// ...
}
This process can feel heavy-handed, so TanStack Router exports a utility called lazyFn which is very similar to lazyRouteComponent that can help simplify this process:
import { lazyFn } from '@tanstack/react-router'
const route = createRoute({
path: '/my-route',
component: MyComponent,
loader: lazyFn(() => import('./loader'), 'loader'),
})
// In another file...a
export const loader = async (context: LoaderContext) => {
/// ...
}
import { lazyFn } from '@tanstack/react-router'
const route = createRoute({
path: '/my-route',
component: MyComponent,
loader: lazyFn(() => import('./loader'), 'loader'),
})
// In another file...a
export const loader = async (context: LoaderContext) => {
/// ...
}
As you might have guessed, placing your component code in a separate file than your route can make it difficult to consume the route itself. To help with this, TanStack Router exports a handy getRouteApi function that you can use to access a route's type-safe APIs in a file without importing the route itself.
import { createRoute } from '@tanstack/react-router'
import { MyComponent } from './MyComponent'
const route = createRoute({
path: '/my-route',
loader: () => ({
foo: 'bar',
}),
component: MyComponent,
})
import { createRoute } from '@tanstack/react-router'
import { MyComponent } from './MyComponent'
const route = createRoute({
path: '/my-route',
loader: () => ({
foo: 'bar',
}),
component: MyComponent,
})
import { getRouteApi } from '@tanstack/react-router'
const route = getRouteApi('/my-route')
export function MyComponent() {
const loaderData = route.useLoaderData()
// ^? { foo: string }
return <div>...</div>
}
import { getRouteApi } from '@tanstack/react-router'
const route = getRouteApi('/my-route')
export function MyComponent() {
const loaderData = route.useLoaderData()
// ^? { foo: string }
return <div>...</div>
}
The getRouteApi function is useful for accessing other type-safe APIs:
Your weekly dose of JavaScript news. Delivered every Monday to over 100,000 devs, for free.