aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/packages/docs/app/routes.ts
blob: 9acc42981f6dd1328e8668e31ae30b14f0205345 (plain) (blame)
1
2
3
4
5
6
7
8
9
import { index, route, type RouteConfig } from '@react-router/dev/routes';

export default [
  index('routes/home.tsx'),
  route('docs', 'routes/docs.tsx'),
  route('docs/*', 'docs/page.tsx'),
  route('api/search', 'docs/search.ts'),
  route('*', 'routes/not-found.tsx'),
] satisfies RouteConfig;