
Skill
virtual-file-routes
build programmatic route trees with TanStack Router
Description
Programmatic route tree building as an alternative to filesystem conventions: rootRoute, index, route, layout, physical, defineVirtualSubtreeConfig. Use with TanStack Router plugin's virtualRouteConfig option.
SKILL.md
Virtual File Routes (@tanstack/virtual-file-routes)
Build route trees programmatically instead of relying on filesystem conventions. Useful when you want explicit control over route structure, need to mix virtual and physical routes, or want to define route subtrees within file-based routing directories.
CRITICAL: Types are FULLY INFERRED. Never cast, never annotate inferred values.
Install
npm install @tanstack/virtual-file-routes
API Reference
rootRoute(file, children?)
Creates the root of a virtual route tree.
import { rootRoute, index, route } from '@tanstack/virtual-file-routes'
const routes = rootRoute('root.tsx', [
index('index.tsx'),
route('/about', 'about.tsx'),
])
index(file)
Creates an index route — the default rendered when the parent path matches exactly.
import { index } from '@tanstack/virtual-file-routes'
index('home.tsx')
route(path, ...)
Creates a route node. Three call signatures:
import { route, index } from '@tanstack/virtual-file-routes'
// Leaf route: path + file
route('/about', 'about.tsx')
// Branch route: path + file + children
route('/dashboard', 'dashboard.tsx', [
index('dashboard-index.tsx'),
route('/settings', 'settings.tsx'),
])
// Path prefix only (no file): groups children under a URL segment
route('/api', [route('/users', 'users.tsx'), route('/posts', 'posts.tsx')])
layout(file, children) or layout(id, file, children)
Creates a pathless layout route — wraps children without adding a URL segment.
import { layout, route, index } from '@tanstack/virtual-file-routes'
// ID derived from filename
layout('authLayout.tsx', [
route('/dashboard', 'dashboard.tsx'),
route('/settings', 'settings.tsx'),
])
// Explicit ID
layout('admin-layout', 'adminLayout.tsx', [route('/admin', 'admin.tsx')])
physical(pathPrefix, directory) or physical(directory)
Mounts a directory of file-based routes at a URL prefix. Uses TanStack Router's standard file-based routing conventions within that directory.
import { physical } from '@tanstack/virtual-file-routes'
// Mount posts/ directory under /posts
physical('/posts', 'posts')
// Merge features/ directory at the current level
physical('features')
defineVirtualSubtreeConfig(config)
Type helper for __virtual.ts files inside file-based routing directories. Identity function that provides type inference.
// src/routes/admin/__virtual.ts
import {
defineVirtualSubtreeConfig,
index,
route,
} from '@tanstack/virtual-file-routes'
export default defineVirtualSubtreeConfig([
index('home.tsx'),
route('$id', 'details.tsx'),
])
Integration with Router Plugin
Pass the virtual route config to the TanStack Router plugin:
// vite.config.ts
import { defineConfig } from 'vite'
import { tanstackRouter } from '@tanstack/router-plugin/vite'
import { routes } from './routes'
export default defineConfig({
plugins: [
tanstackRouter({
target: 'react', // or 'solid', 'vue'
virtualRouteConfig: routes,
}),
// Add your framework's Vite plugin here
],
})
Or reference a file path:
tanstackRouter({
target: 'react',
virtualRouteConfig: './routes.ts',
})
Full Example
// routes.ts
import {
rootRoute,
route,
index,
layout,
physical,
} from '@tanstack/virtual-file-routes'
export const routes = rootRoute('root.tsx', [
index('index.tsx'),
layout('authLayout.tsx', [
route('/dashboard', 'app/dashboard.tsx', [
index('app/dashboard-index.tsx'),
route('/invoices', 'app/dashboard-invoices.tsx', [
index('app/invoices-index.tsx'),
route('$id', 'app/invoice-detail.tsx'),
]),
]),
]),
// Mount file-based routing from posts/ directory
physical('/posts', 'posts'),
])
Common Mistakes
1. HIGH: Forgetting that file paths are relative to routesDirectory
File paths in rootRoute, index, route, and layout are relative to the routesDirectory configured in the router plugin (default: ./src/routes). Do not use absolute paths or paths relative to the project root.
// WRONG — absolute path
route('/about', '/src/routes/about.tsx')
// CORRECT — relative to routesDirectory
route('/about', 'about.tsx')
2. MEDIUM: Using physical() without matching directory structure
The directory passed to physical() must exist inside routesDirectory and follow TanStack Router's file-based routing conventions.
// WRONG — directory doesn't exist or wrong location
physical('/blog', 'src/blog')
// CORRECT — relative to routesDirectory
physical('/blog', 'blog')
// Expects: src/routes/blog/ (with route files inside)
3. MEDIUM: Confusing layout() with route()
layout() creates a pathless wrapper — it does NOT add a URL segment. Use route() for URL segments.
// This does NOT create a /dashboard URL
layout('dashboardLayout.tsx', [route('/dashboard', 'dashboard.tsx')])
// The URL is /dashboard, and dashboardLayout.tsx wraps it
More skills from the router repository
View all 30 skillscompositions/router-query
integrate TanStack Router with Query
Jul 16FrontendReactTanStackTanStack Routerlifecycle/migrate-from-nextjs
migrate Next.js applications to TanStack Start
Jul 16FrontendMigrationNext.jsTanStack Routerlifecycle/migrate-from-react-router
migrate applications to TanStack Router
Jul 16MigrationReact RouterTanStackTanStack Routerreact-router
implement TanStack Router in React applications
Jul 17FrontendReactRoutingTanStackreact-start
build applications with TanStack Start
Jul 16ReactTanStackTypeScriptreact-start/server-components
implement TanStack Start server components
Jul 17FrontendReactSSR
More from TanStack
View publisheraggregation
perform data aggregation in TanStack Table
table
Jul 20Data AnalysisFrontendTanStackapi-not-found
diagnose TanStack Table API errors
table
Jul 20DebuggingFrontendTanStackclient-vs-server
manage TanStack Table data pipelines
table
Jul 20Data PipelineFrontendPerformanceTanStackcolumn-faceting
build faceted filter UIs
table
Jul 20Data VisualizationFrontendTanStackcolumn-filtering
implement column filtering in TanStack Table
table
Jul 20Data AnalysisFrontendTanStackcolumn-ordering
manage TanStack Table column ordering
table
Jul 20FrontendTanStackUI Components