import { getActualites } from '$lib/server/actualites'; export function load() { const actualites = getActualites().map(({ slug, titre, date, iso, chapeau, couverture, couvertureAlt }) => ({ slug, titre, date, iso, chapeau, couverture, couvertureAlt })); return { actualites }; }