feat: update site URLs and enhance image handling
Deploy / verify (push) Successful in 50s
Deploy / deploy (push) Failing after 1m3s

- Changed site URLs in docker-compose and deployment configurations to remove "www" prefix for consistency.
- Improved image handling by introducing warmPostCardImages function for pre-fetching images in posts and tags.
- Enhanced PostCard component with responsive image sizes for better performance.
- Updated layout to include robots meta tag and JSON-LD structured data for improved SEO.
- Added loading state for images in TopBanner component to enhance user experience.
This commit is contained in:
Peter Meier
2026-04-18 12:25:45 +02:00
parent a2f2d5bfb0
commit da294010c8
16 changed files with 322 additions and 29 deletions
+3 -3
View File
@@ -9,9 +9,9 @@
# REGISTRY_USER Gitea-Username
# REGISTRY_TOKEN Gitea Access Token (Scope: package)
# PUBLIC_CMS_URL https://cms.pm86.de
# PUBLIC_SITE_URL https://www.windwiderstand.de
# PUBLIC_SITE_URL https://windwiderstand.de
# PUBLIC_SITE_NAME Windwiderstand
# ORIGIN https://www.windwiderstand.de
# ORIGIN https://windwiderstand.de
# REVALIDATE_TOKEN openssl rand -hex 32
# PUBLIC_UMAMI_WEBSITE_ID (optional, sonst leer)
@@ -95,7 +95,7 @@ jobs:
- name: Caddy site block + reload
run: |
ssh vserver 'grep -q "^windwiderstand.de" /opt/caddy/extra-config/Caddyfile || printf "\nwindwiderstand.de, www.windwiderstand.de {\n reverse_proxy windwiderstand:3001\n}\n" >> /opt/caddy/extra-config/Caddyfile'
ssh vserver 'grep -q "^windwiderstand.de {" /opt/caddy/extra-config/Caddyfile || printf "\nwindwiderstand.de {\n reverse_proxy windwiderstand:3001\n}\n\nwww.windwiderstand.de {\n redir https://windwiderstand.de{uri} permanent\n}\n" >> /opt/caddy/extra-config/Caddyfile'
ssh vserver "docker exec caddy caddy reload --config /extra-config/Caddyfile"
- name: Cleanup
+2 -2
View File
@@ -5,9 +5,9 @@ services:
- "3001:3001"
environment:
- PUBLIC_CMS_URL=${PUBLIC_CMS_URL:-http://rustycms:3000}
- PUBLIC_SITE_URL=${PUBLIC_SITE_URL:-https://www.windwiderstand.de}
- PUBLIC_SITE_URL=${PUBLIC_SITE_URL:-https://windwiderstand.de}
- PUBLIC_SITE_NAME=${PUBLIC_SITE_NAME:-Windwiderstand}
- ORIGIN=${ORIGIN:-https://www.windwiderstand.de}
- ORIGIN=${ORIGIN:-https://windwiderstand.de}
- IMAGE_CACHE_DIR=${IMAGE_CACHE_DIR:-/app/.cache/images}
volumes:
- image-cache:/app/.cache/images
+7 -3
View File
@@ -1,11 +1,11 @@
/* Windwiderstand Design System Fonts */
/* Windwiderstand Design System Fonts
Nur erlaubte Gewichte (02-typography.md: 300/400/500/600/700). 800/900 entfernt.
@fontsource setzt font-display: swap als Default — Text sichtbar während Font-Load. */
@import "@fontsource/inter/latin-300.css";
@import "@fontsource/inter/latin-400.css";
@import "@fontsource/inter/latin-500.css";
@import "@fontsource/inter/latin-600.css";
@import "@fontsource/inter/latin-700.css";
@import "@fontsource/inter/latin-800.css";
@import "@fontsource/inter/latin-900.css";
@import "@fontsource-variable/lora";
@import "tailwindcss";
@@ -334,6 +334,10 @@ main ol li {
@apply mt-4 mb-3;
}
.markdown hr {
@apply border-stein-200 border-dotted mb-4;
}
.markdown li,
.markdown li p {
@apply mt-0 mb-0;
+20 -1
View File
@@ -39,7 +39,15 @@ export const handle: Handle = async ({ event, resolve }) => {
event.locals.translations = {};
}
const response = await resolve(event);
const response = await resolve(event, {
preload: ({ type, path }) => {
if (type === 'js' || type === 'css') return true;
if (type === 'font') {
return /inter-latin-(400|700)-normal\.[a-f0-9]*\.?woff2$/i.test(path);
}
return false;
},
});
if (
event.request.method === 'GET' &&
@@ -49,5 +57,16 @@ export const handle: Handle = async ({ event, resolve }) => {
response.headers.set('cache-control', PAGE_CACHE_CONTROL);
}
if (
event.request.method === 'GET' &&
!response.headers.has('x-robots-tag') &&
(response.headers.get('content-type') ?? '').includes('text/html')
) {
response.headers.set(
'x-robots-tag',
'index, follow, max-image-preview:large, max-snippet:-1',
);
}
return response;
};
+1
View File
@@ -47,6 +47,7 @@
width={400}
aspect="3/2"
alt={post.headline ?? ""}
sizes="(min-width: 1024px) 33vw, (min-width: 640px) 50vw, 100vw"
class="w-full h-full object-cover"
loading="lazy"
/>
+22 -2
View File
@@ -80,6 +80,19 @@
const hasPageTitle = $derived((headline != null && headline !== "") || (subheadline != null && subheadline !== ""));
const showBanner = $derived(hasImage || hasText || hasPageTitle);
const altText = $derived(banner?.headline ?? headline ?? "");
let imgEl = $state<HTMLImageElement | null>(null);
let imgLoaded = $state(false);
const currentSrc = $derived(responsive?.fallback ?? resolvedImages[0] ?? "");
$effect(() => {
// reset on src change, then probe cache
void currentSrc;
imgLoaded = false;
queueMicrotask(() => {
if (imgEl?.complete && imgEl.naturalWidth > 0) imgLoaded = true;
});
});
</script>
{#if showBanner}
@@ -98,13 +111,17 @@
<img
src={responsive.fallback}
alt={altText}
class="w-full object-cover max-h-[400px] lg:max-h-[600px] max-w-[1920px] aspect-square sm:aspect-video lg:aspect-24/9 text-transparent"
class="w-full object-cover max-h-[400px] lg:max-h-[600px] max-w-[1920px] aspect-square sm:aspect-video lg:aspect-24/9 text-transparent transition-opacity duration-500"
class:opacity-0={!imgLoaded}
class:opacity-100={imgLoaded}
width={responsive.width}
height={responsive.height}
style={imgStyle}
loading="eager"
fetchpriority="high"
decoding="async"
bind:this={imgEl}
onload={() => (imgLoaded = true)}
/>
</picture>
{/key}
@@ -113,12 +130,15 @@
<img
src={resolvedImages[0]}
alt={altText}
class="w-full object-cover max-h-[400px] lg:max-h-[600px] max-w-[1920px] aspect-square sm:aspect-video lg:aspect-24/9 text-transparent"
class="w-full object-cover max-h-[400px] lg:max-h-[600px] max-w-[1920px] aspect-square sm:aspect-video lg:aspect-24/9 text-transparent transition-opacity duration-500"
class:opacity-0={!imgLoaded}
class:opacity-100={imgLoaded}
width={1920}
height={600}
style={imgStyle}
loading="eager"
fetchpriority="high"
onload={() => (imgLoaded = true)}
/>
{/key}
{/if}
+15 -3
View File
@@ -7,10 +7,22 @@
export const DEFAULT_SOCIAL_IMAGE_URL =
"https://images.ctfassets.net/xjxq6v7l1pfe/43yZHpF9OCnrBlEWHJSZMK/1ef20b265ea1e4e55317812ee5ae6b4c/simple-green-tree-illustrated-watercolor-with-gentle-shading-great-rural-scenery-farm-backdrops-naturethemed-designs-landsca.jpg";
/** Parameter für og:image / twitter:image (über /cms-images + Disk-Cache). */
/** og:image-Dimensionen (Facebook/Twitter empfehlen 1200×630, 1.91:1). */
export const SOCIAL_IMAGE_DIMENSIONS = {
width: 1200,
height: 630,
} as const;
/** Logo-Fallback für og:image: letterboxed (contain), damit Logo komplett sichtbar bleibt. */
export const SOCIAL_IMAGE_TRANSFORM = {
width: 200,
height: 200,
...SOCIAL_IMAGE_DIMENSIONS,
fit: "contain" as const,
format: "webp" as const,
};
/** Post-Bild für og:image: cover (Banner-Look), Focal wird separat übergeben. */
export const POST_SOCIAL_IMAGE_TRANSFORM = {
...SOCIAL_IMAGE_DIMENSIONS,
fit: "cover" as const,
format: "webp" as const,
};
+32
View File
@@ -255,3 +255,35 @@ export function warmResponsiveImage(
void fetchFn(u).catch(() => {});
}
}
/**
* Fire-and-forget Warmup für PostCard-Bilder (Grid: 400px base, 2x density, webp+jpeg).
* Spiegelt die URLs, die <RustyImage width={400} aspect="3/2"/> zur Laufzeit anfragt.
*/
export function warmPostCardImages(
posts: Array<{ _rawImageUrl?: string; _imageFocal?: { x: number; y: number } | null }>,
fetchFn: typeof fetch,
limit = 6,
): void {
const widths = [400, 800];
const formats: Array<'webp' | 'jpeg'> = ['webp', 'jpeg'];
for (const post of posts.slice(0, limit)) {
const raw = post._rawImageUrl;
if (!raw) continue;
const focal = post._imageFocal ?? undefined;
for (const w of widths) {
for (const format of formats) {
const url = getCmsImageUrl(raw, {
width: w,
height: Math.round((w / 3) * 2),
fit: 'cover',
format,
quality: 75,
ar: '3/2',
...(focal ? { focalX: focal.x, focalY: focal.y } : {}),
});
void fetchFn(url).catch(() => {});
}
}
}
}
+98 -7
View File
@@ -10,7 +10,7 @@
import Breadcrumbs from '$lib/ui/Breadcrumbs.svelte';
import type { LayoutData } from './$types';
import { ensureTransformedImage } from '$lib/rusty-image';
import { DEFAULT_SOCIAL_IMAGE_URL, SOCIAL_IMAGE_TRANSFORM } from '$lib/constants';
import { DEFAULT_SOCIAL_IMAGE_URL, SOCIAL_IMAGE_DIMENSIONS } from '$lib/constants';
let { data, children }: { data: LayoutData; children: import('svelte').Snippet } = $props();
@@ -19,6 +19,8 @@
seoTitle?: string;
seoDescription?: string;
socialImage?: string;
robots?: string;
jsonLd?: Record<string, unknown> | Record<string, unknown>[];
breadcrumbItems?: { href?: string; label: string }[];
topBanner?: {
banner: unknown;
@@ -59,17 +61,83 @@
});
const breadcrumbItems = $derived(pageData?.breadcrumbItems ?? []);
const robotsContent = $derived.by(() => {
const base = (pageData?.robots ?? 'index, follow').trim();
if (/noindex/i.test(base)) return base;
return `${base}, max-image-preview:large, max-snippet:-1`;
});
const topBannerData = $derived(pageData?.topBanner ?? null);
const bannerPreload = $derived.by(() => {
const r = topBannerData?.responsive;
if (!r) return null;
const webp = r.sources.find((s) => s.type === 'image/webp');
const picked = webp ?? r.sources[0];
if (!picked) return { href: r.fallback, srcset: undefined as string | undefined, type: undefined as string | undefined };
return { href: r.fallback, srcset: picked.srcset, type: picked.type };
});
function escapeLdJson(s: string): string {
return s.replace(/<\/script/gi, '<\\/script');
}
const jsonLdScript = $derived(
`<script type="application/ld+json">${JSON.stringify({
`<script type="application/ld+json">${escapeLdJson(JSON.stringify({
'@context': 'https://schema.org',
'@type': 'WebSite',
name: data.siteName,
url: baseUrl,
inLanguage: 'de-DE',
})}<\/script>`,
publisher: { '@type': 'Organization', name: data.siteName, ...(baseUrl ? { '@id': `${baseUrl}#org` } : {}) },
}))}<\/script>`,
);
const organizationLdScript = $derived.by(() => {
const sameAs = (data.socialLinks ?? [])
.map((l) => l.href)
.filter((h) => /^https?:\/\//.test(h));
const org: Record<string, unknown> = {
'@context': 'https://schema.org',
'@type': 'Organization',
...(baseUrl ? { '@id': `${baseUrl}#org` } : {}),
name: data.siteName,
url: baseUrl,
...(data.logoSocialImage ? { logo: data.logoSocialImage } : {}),
...(sameAs.length ? { sameAs } : {}),
};
return `<script type="application/ld+json">${escapeLdJson(JSON.stringify(org))}<\/script>`;
});
const pageJsonLdScripts = $derived.by(() => {
const raw = pageData?.jsonLd;
if (!raw) return '';
const items = Array.isArray(raw) ? raw : [raw];
return items
.map(
(o) =>
`<script type="application/ld+json">${escapeLdJson(JSON.stringify(o))}<\/script>`,
)
.join('');
});
const breadcrumbJsonLdScript = $derived.by(() => {
const items = pageData?.breadcrumbItems ?? [];
if (items.length < 2) return '';
const ld = {
'@context': 'https://schema.org',
'@type': 'BreadcrumbList',
itemListElement: items.map((item, i) => ({
'@type': 'ListItem',
position: i + 1,
name: item.label,
...(item.href
? {
item: item.href.startsWith('http')
? item.href
: `${baseUrl}${item.href}`,
}
: {}),
})),
};
return `<script type="application/ld+json">${escapeLdJson(JSON.stringify(ld))}<\/script>`;
});
const formbricksAppUrl = String(import.meta.env.PUBLIC_FORMBRICKS_APP_URL ?? '').replace(/\/$/, '');
const formbricksEnvId = String(import.meta.env.PUBLIC_FORMBRICKS_ENVIRONMENT_ID ?? '').trim();
@@ -81,6 +149,18 @@
<svelte:head>
<meta name="theme-color" content="#ffffff" />
<meta name="robots" content={robotsContent} />
{#if bannerPreload}
<link
rel="preload"
as="image"
href={bannerPreload.href}
imagesrcset={bannerPreload.srcset}
imagesizes="100vw"
type={bannerPreload.type}
fetchpriority="high"
/>
{/if}
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="alternate" type="application/rss+xml" title="Beiträge" href="/posts/rss.xml" />
<link rel="sitemap" href="/sitemap.xml" />
@@ -115,8 +195,8 @@
{/if}
{#if socialImageUrl}
<meta property="og:image" content={socialImageUrl} />
<meta property="og:image:width" content={String(SOCIAL_IMAGE_TRANSFORM.width)} />
<meta property="og:image:height" content={String(SOCIAL_IMAGE_TRANSFORM.height)} />
<meta property="og:image:width" content={String(SOCIAL_IMAGE_DIMENSIONS.width)} />
<meta property="og:image:height" content={String(SOCIAL_IMAGE_DIMENSIONS.height)} />
{/if}
<meta property="og:locale" content="de_DE" />
<meta property="og:site_name" content={data.siteName} />
@@ -130,8 +210,15 @@
{#if socialImageUrl}
<meta name="twitter:image" content={socialImageUrl} />
{/if}
<!-- JSON-LD WebSite -->
<!-- JSON-LD WebSite + Organization -->
{@html jsonLdScript}
{@html organizationLdScript}
{#if breadcrumbJsonLdScript}
{@html breadcrumbJsonLdScript}
{/if}
{#if pageJsonLdScripts}
{@html pageJsonLdScripts}
{/if}
{#if import.meta.env.PUBLIC_UMAMI_SCRIPT_URL && import.meta.env.PUBLIC_UMAMI_WEBSITE_ID}
<script
defer
@@ -152,6 +239,10 @@
</svelte:head>
<TranslationProvider translations={data.translations}>
<a
href="#main-content"
class="sr-only focus:not-sr-only focus:fixed focus:top-2 focus:left-2 focus:z-[100] focus:bg-white focus:px-3 focus:py-2 focus:shadow focus:outline focus:outline-2 focus:outline-wald-600 focus:rounded-sm"
>Zum Inhalt springen</a>
<div class="flex min-h-screen flex-col text-zinc-900">
<Header
links={data.headerLinks}
@@ -173,7 +264,7 @@
/>
{/if}
<main class="flex-1 min-h-[60em]">
<main id="main-content" tabindex="-1" class="flex-1 min-h-[60em]">
<div class="container-custom pb-12">
{#if breadcrumbItems.length > 0}
<Breadcrumbs items={breadcrumbItems} />
+1
View File
@@ -111,5 +111,6 @@ export const load: PageServerLoad = async ({ locals, fetch }) => {
? (page.seoTitle ?? page.headline ?? page.linkName ?? siteName)
: siteName,
seoDescription: page ? (page.seoDescription ?? page.subheadline ?? '') : '',
robots: (page as { seoMetaRobots?: string } | null)?.seoMetaRobots ?? undefined,
};
};
+1
View File
@@ -78,6 +78,7 @@ export const load: PageServerLoad = async ({ params, locals, fetch }) => {
translations,
seoTitle: page.seoTitle ?? page.headline ?? page.linkName ?? slug,
seoDescription: page.seoDescription ?? page.subheadline ?? '',
robots: (page as { seoMetaRobots?: string }).seoMetaRobots ?? undefined,
breadcrumbItems: [
{ href: '/', label: 'Start' },
{ label: page.headline ?? page.linkName ?? page.slug ?? page._slug ?? slug },
+92 -4
View File
@@ -12,7 +12,8 @@ import {
getPostImageField,
formatPostDate,
} from '$lib/blog-utils';
import { POST_RESOLVE } from '$lib/constants';
import { POST_RESOLVE, POST_SOCIAL_IMAGE_TRANSFORM, SITE_NAME } from '$lib/constants';
import { env } from '$env/dynamic/public';
import { error } from '@sveltejs/kit';
import { marked } from 'marked';
@@ -47,6 +48,21 @@ export const load: PageServerLoad = async ({ params, locals, url }) => {
})
: null;
const siteBaseUrl = (env.PUBLIC_SITE_URL || '').replace(/\/$/, '');
const canonical = `${siteBaseUrl}/post/${slug}/`;
const postSocialImageRel = postImageField
? await ensureTransformedImage(postImageField.url, {
...POST_SOCIAL_IMAGE_TRANSFORM,
focalX: postImageField.focal?.x,
focalY: postImageField.focal?.y,
})
: null;
const postSocialImageAbs = postSocialImageRel
? postSocialImageRel.startsWith('/')
? `${siteBaseUrl}${postSocialImageRel}`
: postSocialImageRel
: null;
const postDate = formatPostDate(post.created);
const postContent = (post as { content?: string }).content;
@@ -63,6 +79,14 @@ export const load: PageServerLoad = async ({ params, locals, url }) => {
((post as { row2Content?: unknown[] }).row2Content?.length ?? 0) > 0 ||
((post as { row3Content?: unknown[] }).row3Content?.length ?? 0) > 0;
const siteName =
(import.meta.env.PUBLIC_SITE_NAME as string | undefined) || SITE_NAME;
const postCreated = (post as { created?: string }).created ?? null;
const postUpdated = (post as { updated?: string }).updated ?? postCreated;
const postAuthor = (post as { author?: string }).author ?? null;
const postHeadline = post.headline ?? post.linkName ?? slug;
const postDescription = post.seoDescription ?? post.subheadline ?? post.excerpt ?? '';
const isEvent = !!(post as { isEvent?: boolean }).isEvent;
const eventDateRaw = (post as { eventDate?: string }).eventDate ?? null;
const eventDateLabel =
@@ -104,6 +128,68 @@ export const load: PageServerLoad = async ({ params, locals, url }) => {
.replace(/\{\{PAGE_TITLE\}\}/g, post.headline ?? post.linkName ?? slug);
const showCommentSection = (post as { showCommentSection?: boolean }).showCommentSection !== false;
const jsonLd: Record<string, unknown>[] = [];
const articleLd: Record<string, unknown> = {
'@context': 'https://schema.org',
'@type': isEvent ? 'Article' : 'BlogPosting',
headline: postHeadline,
mainEntityOfPage: { '@type': 'WebPage', '@id': canonical },
url: canonical,
inLanguage: 'de-DE',
...(postDescription ? { description: postDescription } : {}),
...(postCreated ? { datePublished: postCreated } : {}),
...(postUpdated ? { dateModified: postUpdated } : {}),
...(postSocialImageAbs ? { image: postSocialImageAbs } : {}),
author: {
'@type': postAuthor ? 'Person' : 'Organization',
name: postAuthor ?? siteName,
},
publisher: {
'@type': 'Organization',
name: siteName,
...(siteBaseUrl ? { url: siteBaseUrl } : {}),
},
};
jsonLd.push(articleLd);
if (isEvent && eventDateRaw) {
const eventLd: Record<string, unknown> = {
'@context': 'https://schema.org',
'@type': 'Event',
name: postHeadline,
startDate: eventDateRaw,
eventAttendanceMode: 'https://schema.org/OfflineEventAttendanceMode',
eventStatus: 'https://schema.org/EventScheduled',
url: canonical,
inLanguage: 'de-DE',
...(postDescription ? { description: postDescription } : {}),
...(postSocialImageAbs ? { image: postSocialImageAbs } : {}),
organizer: {
'@type': 'Organization',
name: siteName,
...(siteBaseUrl ? { url: siteBaseUrl } : {}),
},
...(eventLocation?.text
? {
location: {
'@type': 'Place',
name: eventLocation.text,
...(hasCoords
? {
geo: {
'@type': 'GeoCoordinates',
latitude: eventLocation.lat,
longitude: eventLocation.lng,
},
}
: {}),
},
}
: {}),
};
jsonLd.push(eventLd);
}
return {
post,
postImageUrl,
@@ -120,9 +206,11 @@ export const load: PageServerLoad = async ({ params, locals, url }) => {
mapLinkUrl,
commentSlot: showCommentSection ? commentSlot : '',
translations,
seoTitle: post.seoTitle ?? post.headline ?? post.linkName ?? slug,
seoDescription: post.seoDescription ?? post.subheadline ?? post.excerpt ?? '',
socialImage: postImageUrl ?? undefined,
seoTitle: post.seoTitle ?? postHeadline,
seoDescription: postDescription,
socialImage: postSocialImageAbs ?? postImageUrl ?? undefined,
robots: (post as { seoMetaRobots?: string }).seoMetaRobots ?? undefined,
jsonLd,
breadcrumbItems: [
{ href: '/', label: 'Start' },
{ href: '/posts/', label: 'Beiträge' },
+7 -1
View File
@@ -1,11 +1,17 @@
import type { PageServerLoad } from './$types';
import { loadPostsList } from '$lib/blog-utils';
import { warmPostCardImages } from '$lib/rusty-image.server';
import { t, T } from '$lib/translations';
export const load: PageServerLoad = async ({ locals }) => {
export const load: PageServerLoad = async ({ locals, fetch }) => {
const translations = locals.translations ?? {};
const result = await loadPostsList({ page: 1 });
warmPostCardImages(
result.posts as Array<{ _rawImageUrl?: string; _imageFocal?: { x: number; y: number } | null }>,
fetch,
);
return {
...result,
translations,
+7 -1
View File
@@ -1,12 +1,18 @@
import type { PageServerLoad } from './$types';
import { loadPostsList } from '$lib/blog-utils';
import { warmPostCardImages } from '$lib/rusty-image.server';
import { t, T } from '$lib/translations';
export const load: PageServerLoad = async ({ params, locals }) => {
export const load: PageServerLoad = async ({ params, locals, fetch }) => {
const translations = locals.translations ?? {};
const page = Math.max(1, parseInt(params.page, 10) || 1);
const result = await loadPostsList({ page });
warmPostCardImages(
result.posts as Array<{ _rawImageUrl?: string; _imageFocal?: { x: number; y: number } | null }>,
fetch,
);
return {
...result,
translations,
+7 -1
View File
@@ -1,11 +1,17 @@
import type { PageServerLoad } from './$types';
import { loadPostsList } from '$lib/blog-utils';
import { warmPostCardImages } from '$lib/rusty-image.server';
import { t, T } from '$lib/translations';
export const load: PageServerLoad = async ({ params, locals }) => {
export const load: PageServerLoad = async ({ params, locals, fetch }) => {
const translations = locals.translations ?? {};
const result = await loadPostsList({ tagSlug: params.tag, page: 1 });
warmPostCardImages(
result.posts as Array<{ _rawImageUrl?: string; _imageFocal?: { x: number; y: number } | null }>,
fetch,
);
return {
...result,
translations,
@@ -1,12 +1,18 @@
import type { PageServerLoad } from './$types';
import { loadPostsList } from '$lib/blog-utils';
import { warmPostCardImages } from '$lib/rusty-image.server';
import { t, T } from '$lib/translations';
export const load: PageServerLoad = async ({ params, locals }) => {
export const load: PageServerLoad = async ({ params, locals, fetch }) => {
const translations = locals.translations ?? {};
const page = Math.max(1, parseInt(params.page, 10) || 1);
const result = await loadPostsList({ tagSlug: params.tag, page });
warmPostCardImages(
result.posts as Array<{ _rawImageUrl?: string; _imageFocal?: { x: number; y: number } | null }>,
fetch,
);
return {
...result,
translations,