Skip to content

Commit daa909d

Browse files
committed
check
1 parent 46f4930 commit daa909d

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

_config.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ import mdx from "lume/plugins/mdx.ts";
77
const site = lume({
88
src: ".",
99
dest: "_site",
10-
}, {
11-
url: "https://tinyclouds.ry.deno.net",
10+
location: new URL("https://tinyclouds.ry.deno.net"),
1211
});
1312

1413
site.use(jsx());

_includes/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ export default function Layout(
22
{ title, background, children }: {
33
title?: string;
44
background?: string;
5-
children: React.ReactNode;
5+
children: unknown;
66
},
77
) {
88
return (

_includes/post.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default function Post(
66
publish_date: Date;
77
cover_html?: string;
88
post_class?: string;
9-
children: React.ReactNode;
9+
children: unknown;
1010
},
1111
) {
1212
const formattedDate = new Date(publish_date).toISOString().split("T")[0];

0 commit comments

Comments
 (0)