diff --git a/src/components/content/Figure.astro b/src/components/content/Figure.astro index 63f125c..5e2d600 100644 --- a/src/components/content/Figure.astro +++ b/src/components/content/Figure.astro @@ -16,7 +16,6 @@ const images = import.meta.glob<{ default: ImageMetadata }>( ); const imagePath = `/src${src}`; -console.log(imagePath); const image = images[imagePath]?.default; --- diff --git a/src/components/layout/PostHeader/Title.astro b/src/components/layout/PostHeader/Title.astro index 6d2de90..a1c4cb0 100644 --- a/src/components/layout/PostHeader/Title.astro +++ b/src/components/layout/PostHeader/Title.astro @@ -6,7 +6,6 @@ interface Props { const { title, subtitle } = Astro.props; -console.log(subtitle); ---
diff --git a/src/components/layout/PostHeader/index.astro b/src/components/layout/PostHeader/index.astro index 6ff3807..915a722 100644 --- a/src/components/layout/PostHeader/index.astro +++ b/src/components/layout/PostHeader/index.astro @@ -24,7 +24,6 @@ const { title, cover, subtitle, tags, publishDate, updateDate, breadcrumbs } = Astro.props; const showCover = cover?.src && cover?.showInHeader; -console.log(Astro.props); ---
@@ -41,6 +40,7 @@ console.log(Astro.props);