This commit is contained in:
2025-04-24 12:58:25 -06:00
parent 67f29ec389
commit 6194678607
4 changed files with 19 additions and 7 deletions

View File

@ -10,7 +10,7 @@ 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";
import * as $Example from "./islands/Example.tsx";
import type { Manifest } from "$fresh/server.ts";
const manifest = {
@ -24,7 +24,9 @@ const manifest = {
"./routes/posts.tsx": $posts,
"./routes/projects.tsx": $projects,
},
islands: {},
islands: {
"./islands/Example.tsx": $Example,
},
baseUrl: import.meta.url,
} satisfies Manifest;