Fixed console.log artefacts
All checks were successful
Build and Deploy DAVE | DMGs Site / deploy (push) Successful in 1m22s

This commit is contained in:
2026-03-05 12:42:09 +01:00
parent ce4e973a89
commit c602c8ecb9
3 changed files with 1 additions and 3 deletions

View File

@@ -16,7 +16,6 @@ const images = import.meta.glob<{ default: ImageMetadata }>(
);
const imagePath = `/src${src}`;
console.log(imagePath);
const image = images[imagePath]?.default;
---

View File

@@ -6,7 +6,6 @@ interface Props {
const { title, subtitle } = Astro.props;
console.log(subtitle);
---
<div class="wrapper content">

View File

@@ -24,7 +24,6 @@ const { title, cover, subtitle, tags, publishDate, updateDate, breadcrumbs } =
Astro.props;
const showCover = cover?.src && cover?.showInHeader;
console.log(Astro.props);
---
<header class="wrapper">
@@ -41,6 +40,7 @@ console.log(Astro.props);
<style>
.wrapper {
@mixin border-b 8px, solid, var(--color-border-strong);
background-color: var(--color-surface-base);
}
</style>