Move menu to islands

This commit is contained in:
2023-05-26 11:03:15 +08:00
parent 44b8b603c9
commit d8bebc32a2
3 changed files with 7 additions and 5 deletions

View File

@@ -5,13 +5,16 @@
import config from "./deno.json" assert { type: "json" };
import * as $0 from "./routes/api/task/list.ts";
import * as $1 from "./routes/index.tsx";
import * as $$0 from "./islands/Menu.tsx";
const manifest = {
routes: {
"./routes/api/task/list.ts": $0,
"./routes/index.tsx": $1,
},
islands: {},
islands: {
"./islands/Menu.tsx": $$0,
},
baseUrl: import.meta.url,
config,
};