blob: e83984912446a772c3cc4d8cbffb22d4b6d436d7 (
plain)
1
2
3
4
5
6
|
import { type RouteConfig, index, route } from "@react-router/dev/routes";
export default [
index("routes/home.tsx"),
route("/api/posts", "routes/api.posts.tsx"),
] satisfies RouteConfig;
|