// index.lazy.tsx
import { createLazyFileRoute } from "@tanstack/react-router";
function Index() { }
export const Route = createLazyFileRoute("/")({
component: Index
});
此代码片段复制自 Tanstack Router - Quick Start
Tanstack Router 生成一个文件
routeTree.gen.ts
,该文件声明 FileRoutesByPath
接口,createLazyFileRoute
用于映射可能的路径。您可以运行 tsr watch
或 tsr generate
,或者,如果使用捆绑器插件,则构建您的项目或启动开发服务器。
这里是关于为不同环境设置基于文件的路由器的指南。