docs(world): document map lod system
🔍 Lint / 🪄 Check lint (pull_request) Has been cancelled
🔍 Lint / 🎨 Check format (pull_request) Has been cancelled
🔍 Lint / 🔎 Typecheck (pull_request) Has been cancelled
📊 Quality / 🔒 Security Audit (pull_request) Has been cancelled
📊 Quality / 📋 Dependency Freshness (pull_request) Has been cancelled
📊 Quality / 📦 Bundle Size (pull_request) Has been cancelled
🔍 Lint / 🏗 Build (pull_request) Has been cancelled

This commit is contained in:
Tom Boullay
2026-05-31 21:23:07 +02:00
parent b9c5d0c563
commit 3e7edcb1b7
6 changed files with 145 additions and 6 deletions
+5
View File
@@ -107,6 +107,10 @@ const LazyDocsMapPerformancePage = lazyNamed(
() => import("@/pages/docs/map-performance/page"),
"DocsMapPerformancePage",
);
const LazyDocsMapLodPage = lazyNamed(
() => import("@/pages/docs/map-lod/page"),
"DocsMapLodPage",
);
export const DocsLayoutRoute = createDocsRoute(LazyDocsLayout);
export const DocsReadmeRoute = createDocsRoute(LazyDocsReadmePage);
@@ -136,3 +140,4 @@ export const DocsThreeDebuggingRoute = createDocsRoute(
export const DocsMapPerformanceRoute = createDocsRoute(
LazyDocsMapPerformancePage,
);
export const DocsMapLodRoute = createDocsRoute(LazyDocsMapLodPage);