All gucci!

This commit is contained in:
2025-04-24 20:27:25 -06:00
parent f859a12d2c
commit 9dc9225591
5 changed files with 137 additions and 34 deletions

View File

@ -11,6 +11,8 @@ 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 * as $NavigationBar from "./islands/NavigationBar.tsx";
import * as $ScrollUpButton from "./islands/ScrollUpButton.tsx";
import type { Manifest } from "$fresh/server.ts";
const manifest = {
@ -26,6 +28,8 @@ const manifest = {
},
islands: {
"./islands/Example.tsx": $Example,
"./islands/NavigationBar.tsx": $NavigationBar,
"./islands/ScrollUpButton.tsx": $ScrollUpButton,
},
baseUrl: import.meta.url,
} satisfies Manifest;