docs: audit app architecture and refresh feature documentation
🔍 Lint / 🪄 Check lint (push) Has been cancelled
🔍 Lint / 🎨 Check format (push) Has been cancelled
🔍 Lint / 🔎 Typecheck (push) Has been cancelled
🔍 Lint / 🏗 Build (push) Has been cancelled
📊 Quality / 🔒 Security Audit (push) Has been cancelled
📊 Quality / 📋 Dependency Freshness (push) Has been cancelled
📊 Quality / 📦 Bundle Size (push) Has been cancelled
🔍 Lint / 🪄 Check lint (push) Has been cancelled
🔍 Lint / 🎨 Check format (push) Has been cancelled
🔍 Lint / 🔎 Typecheck (push) Has been cancelled
🔍 Lint / 🏗 Build (push) Has been cancelled
📊 Quality / 🔒 Security Audit (push) Has been cancelled
📊 Quality / 📋 Dependency Freshness (push) Has been cancelled
📊 Quality / 📦 Bundle Size (push) Has been cancelled
This commit is contained in:
@@ -43,6 +43,18 @@ const LazyDocsTargetArchitecturePage = lazyNamed(
|
||||
() => import("@/pages/docs/target-architecture/page"),
|
||||
"DocsTargetArchitecturePage",
|
||||
);
|
||||
const LazyDocsSceneRuntimePage = lazyNamed(
|
||||
() => import("@/pages/docs/scene-runtime/page"),
|
||||
"DocsSceneRuntimePage",
|
||||
);
|
||||
const LazyDocsRepairGamePage = lazyNamed(
|
||||
() => import("@/pages/docs/repair-game/page"),
|
||||
"DocsRepairGamePage",
|
||||
);
|
||||
const LazyDocsInteractionPage = lazyNamed(
|
||||
() => import("@/pages/docs/interaction/page"),
|
||||
"DocsInteractionPage",
|
||||
);
|
||||
const LazyDocsTechnicalEditorPage = lazyNamed(
|
||||
() => import("@/pages/docs/technical-editor/page"),
|
||||
"DocsTechnicalEditorPage",
|
||||
@@ -59,6 +71,10 @@ const LazyDocsZustandPage = lazyNamed(
|
||||
() => import("@/pages/docs/zustand/page"),
|
||||
"DocsZustandPage",
|
||||
);
|
||||
const LazyDocsThreeDebuggingPage = lazyNamed(
|
||||
() => import("@/pages/docs/three-debugging/page"),
|
||||
"DocsThreeDebuggingPage",
|
||||
);
|
||||
const LazyDocsFeaturesPage = lazyNamed(
|
||||
() => import("@/pages/docs/features/page"),
|
||||
"DocsFeaturesPage",
|
||||
@@ -75,10 +91,17 @@ const LazyDocsAnimationPage = lazyNamed(
|
||||
() => import("@/pages/docs/animation/page"),
|
||||
"DocsAnimationPage",
|
||||
);
|
||||
const LazyDocsCodeReviewPage = lazyNamed(
|
||||
() => import("@/pages/docs/code-review/page"),
|
||||
"DocsCodeReviewPage",
|
||||
);
|
||||
|
||||
export const DocsLayoutRoute = createDocsRoute(LazyDocsLayout);
|
||||
export const DocsReadmeRoute = createDocsRoute(LazyDocsReadmePage);
|
||||
export const DocsArchitectureRoute = createDocsRoute(LazyDocsArchitecturePage);
|
||||
export const DocsSceneRuntimeRoute = createDocsRoute(LazyDocsSceneRuntimePage);
|
||||
export const DocsRepairGameRoute = createDocsRoute(LazyDocsRepairGamePage);
|
||||
export const DocsInteractionRoute = createDocsRoute(LazyDocsInteractionPage);
|
||||
export const DocsTargetArchitectureRoute = createDocsRoute(
|
||||
LazyDocsTargetArchitecturePage,
|
||||
);
|
||||
@@ -88,7 +111,11 @@ export const DocsTechnicalEditorRoute = createDocsRoute(
|
||||
export const DocsAudioRoute = createDocsRoute(LazyDocsAudioPage);
|
||||
export const DocsHandTrackingRoute = createDocsRoute(LazyDocsHandTrackingPage);
|
||||
export const DocsZustandRoute = createDocsRoute(LazyDocsZustandPage);
|
||||
export const DocsThreeDebuggingRoute = createDocsRoute(
|
||||
LazyDocsThreeDebuggingPage,
|
||||
);
|
||||
export const DocsFeaturesRoute = createDocsRoute(LazyDocsFeaturesPage);
|
||||
export const DocsMainFeatureRoute = createDocsRoute(LazyDocsMainFeaturePage);
|
||||
export const DocsEditorRoute = createDocsRoute(LazyDocsEditorPage);
|
||||
export const DocsAnimationRoute = createDocsRoute(LazyDocsAnimationPage);
|
||||
export const DocsCodeReviewRoute = createDocsRoute(LazyDocsCodeReviewPage);
|
||||
|
||||
Reference in New Issue
Block a user