From 30f24e137ee2d1acec11a0da61e134f512ee02dd Mon Sep 17 00:00:00 2001 From: yyamashita Date: Fri, 19 Jun 2026 15:18:55 +0900 Subject: Initial implementation of microblog Markdown-based personal microblog with REST API. XSS protection via sanitize-html on server-side markdown rendering. Co-Authored-By: Claude Sonnet 4.6 --- app/routes.ts | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 app/routes.ts (limited to 'app/routes.ts') diff --git a/app/routes.ts b/app/routes.ts new file mode 100644 index 0000000..e839849 --- /dev/null +++ b/app/routes.ts @@ -0,0 +1,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; -- cgit v1.2.3