update patyhs

This commit is contained in:
JOLIMAITRE Matthieu 2024-05-23 21:22:09 +02:00
parent c70202e5d1
commit 0458ad4948
7 changed files with 9 additions and 13 deletions

View file

@ -4,7 +4,9 @@
import * as $_404 from "./routes/_404.tsx";
import * as $_app from "./routes/_app.tsx";
import * as $_middleware from "./routes/_middleware.ts";
import * as $api_joke from "./routes/api/joke.ts";
import * as $feur from "./routes/feur.tsx";
import * as $greet_name_ from "./routes/greet/[name].tsx";
import * as $index from "./routes/index.tsx";
import * as $Counter from "./islands/Counter.tsx";
@ -14,7 +16,9 @@ const manifest = {
routes: {
"./routes/_404.tsx": $_404,
"./routes/_app.tsx": $_app,
"./routes/_middleware.ts": $_middleware,
"./routes/api/joke.ts": $api_joke,
"./routes/feur.tsx": $feur,
"./routes/greet/[name].tsx": $greet_name_,
"./routes/index.tsx": $index,
},