要在 Rspack 或 Rsbuild 中使用基於檔案的路由 (file-based routing),您需要安裝 @tanstack/router-plugin 套件。
npm install -D @tanstack/router-plugin
npm install -D @tanstack/router-plugin
安裝完成後,您需要將插件加入設定檔中。
// rsbuild.config.ts
import { defineConfig } from '@rsbuild/core'
import { pluginReact } from '@rsbuild/plugin-react'
import { TanStackRouterRspack } from '@tanstack/router-plugin/rspack'
export default defineConfig({
plugins: [pluginReact()],
tools: {
rspack: {
plugins: [
TanStackRouterRspack({ target: 'react', autoCodeSplitting: true }),
],
},
},
})
// rsbuild.config.ts
import { defineConfig } from '@rsbuild/core'
import { pluginReact } from '@rsbuild/plugin-react'
import { TanStackRouterRspack } from '@tanstack/router-plugin/rspack'
export default defineConfig({
plugins: [pluginReact()],
tools: {
rspack: {
plugins: [
TanStackRouterRspack({ target: 'react', autoCodeSplitting: true }),
],
},
},
})
或者,您可以複製我們的 Rspack/Rsbuild 快速入門範例 直接開始使用。
現在您已將插件加入 Rspack/Rsbuild 設定中,可以開始使用 TanStack Router 的基於檔案路由功能了。
如果您的專案配置了程式碼檢查工具 (linter) 或格式化工具 (formatter),您可能會想忽略自動生成的路由樹檔案。這個檔案由 TanStack Router 管理,因此不應被您的檢查工具或格式化工具修改。
以下是一些幫助您忽略路由樹檔案的資源:
Warning
如果您使用 VSCode,在重新命名路由後,可能會遇到路由樹檔案意外開啟(並顯示錯誤)的情況。
您可以透過 VSCode 設定將該檔案標記為唯讀來防止此情況。我們建議同時透過以下設定將其從搜尋結果和檔案監控中排除:
{
"files.readonlyInclude": {
"**/routeTree.gen.ts": true
},
"files.watcherExclude": {
"**/routeTree.gen.ts": true
},
"search.exclude": {
"**/routeTree.gen.ts": true
}
}
{
"files.readonlyInclude": {
"**/routeTree.gen.ts": true
},
"files.watcherExclude": {
"**/routeTree.gen.ts": true
},
"search.exclude": {
"**/routeTree.gen.ts": true
}
}
您可以將這些設定套用於使用者層級,或僅針對單一工作區使用,方法是在專案根目錄建立 .vscode/settings.json 檔案。
當在 Rspack(或 Rsbuild)中使用 TanStack Router 插件進行基於檔案的路由時,它提供了一些適合大多數專案的預設值:
{
"routesDirectory": "./src/routes",
"generatedRouteTree": "./src/routeTree.gen.ts",
"routeFileIgnorePrefix": "-",
"quoteStyle": "single"
}
{
"routesDirectory": "./src/routes",
"generatedRouteTree": "./src/routeTree.gen.ts",
"routeFileIgnorePrefix": "-",
"quoteStyle": "single"
}
如果這些預設值符合您的專案需求,您完全不需要進行任何設定!但如果您需要自訂設定,可以透過編輯傳入 TanStackRouterVite 函式的設定物件來實現。
您可以在 基於檔案路由的 API 參考文件 中找到所有可用的設定選項。
Your weekly dose of JavaScript news. Delivered every Monday to over 100,000 devs, for free.