1
0
mirror of https://github.com/theoludwig/theoludwig.git synced 2026-02-28 16:01:00 +01:00

chore: explicit docker.io + deps update latest

This commit is contained in:
2026-02-26 21:57:19 +01:00
parent 42c79ef49e
commit 748eeb487c
10 changed files with 830 additions and 836 deletions

View File

@@ -84,7 +84,7 @@ export const BlogPostContent: React.FC<BlogPostContentProps> = async (props) =>
},
img: (properties) => {
const { src = "", alt = "Blog Image" } = properties
const source = src.replace("../../../apps/website/public/", "/")
const source = (src as string).replace("../../../apps/website/public/", "/")
return (
<span className="flex flex-col items-center justify-center">
<Image src={source} alt={alt} width={1000} height={1000} className="size-auto" />