From 21ec63eaaf2ab1cb088f1c1787200a91cce460a5 Mon Sep 17 00:00:00 2001 From: 简律纯 Date: Tue, 10 Feb 2026 13:28:23 +0800 Subject: chore: sync with main [skip ci] (#91) Co-authored-by: NtskwK Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- packages/docs/app/routes.ts | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 packages/docs/app/routes.ts (limited to 'packages/docs/app/routes.ts') diff --git a/packages/docs/app/routes.ts b/packages/docs/app/routes.ts new file mode 100644 index 0000000..2997ecf --- /dev/null +++ b/packages/docs/app/routes.ts @@ -0,0 +1,16 @@ +import { route, type RouteConfig } from '@react-router/dev/routes'; + +export default [ + // Home routes: / and /:lang + route(':lang?', 'routes/home.tsx', { id: 'home' }), + + // Docs routes: /docs/* and /:lang/docs/* + route(':lang?/docs', 'routes/docs.tsx', { id: 'docs' }), + route(':lang?/docs/*', 'docs/page.tsx', { id: 'docs-page' }), + + // API routes + route('api/search', 'docs/search.ts', { id: 'api-search' }), + + // Catch-all 404 + route('*', 'routes/not-found.tsx', { id: 'not-found' }), +] satisfies RouteConfig; -- cgit v1.2.3-70-g09d2