File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed
Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -7,8 +7,7 @@ import mdx from "lume/plugins/mdx.ts";
77const 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
1413site . use ( jsx ( ) ) ;
Original file line number Diff line number Diff 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 (
Original file line number Diff line number Diff 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 ] ;
You can’t perform that action at this time.
0 commit comments