Files
YANPM/apps/frontend/app/routes.ts

10 lines
324 B
TypeScript

import { type RouteConfig, index, layout, route } from '@react-router/dev/routes';
export default [
route('login', 'routes/auth/login.tsx'),
layout('routes/layout.tsx', [index('routes/home.tsx')]),
// route('init', 'routes/init.tsx'),
// catch-all 404 route
route('*', 'routes/404.tsx'),
] satisfies RouteConfig;