This commit is contained in:
2025-04-24 02:24:42 -06:00
parent 261aab9a4b
commit 8f2f8c3ff2
13 changed files with 264 additions and 60 deletions

View File

@ -7,6 +7,7 @@ import * as $_app from "./routes/_app.tsx";
import * as $_layout from "./routes/_layout.tsx";
import * as $api_joke from "./routes/api/joke.ts";
import * as $index from "./routes/index.tsx";
import * as $post_slug_ from "./routes/post/[slug].tsx";
import * as $posts from "./routes/posts.tsx";
import * as $projects from "./routes/projects.tsx";
@ -19,6 +20,7 @@ const manifest = {
"./routes/_layout.tsx": $_layout,
"./routes/api/joke.ts": $api_joke,
"./routes/index.tsx": $index,
"./routes/post/[slug].tsx": $post_slug_,
"./routes/posts.tsx": $posts,
"./routes/projects.tsx": $projects,
},