oblog-parallels/src/config.ts

23 lines
844 B
TypeScript
Raw Normal View History

2025-05-28 00:15:39 +02:00
export const SITE = {
2025-05-28 04:04:47 +02:00
website: "https://blog.oblic-parallels.fr/", // replace this with your deployed domain
author: "Gu://em_",
profile: "https://oblic-parallels.fr",
2025-05-28 00:15:39 +02:00
desc: "A minimal, responsive and SEO-friendly Astro blog theme.",
2025-05-28 04:04:47 +02:00
title: "Oblog Parallels",
2025-05-28 00:15:39 +02:00
ogImage: "astropaper-og.jpg",
lightAndDarkMode: true,
postPerIndex: 4,
postPerPage: 4,
scheduledPostMargin: 15 * 60 * 1000, // 15 minutes
showArchives: true,
showBackButton: true, // show back button in post detail
editPost: {
2025-05-28 04:04:47 +02:00
enabled: false,
text: "Proposer un changement",
url: "https://openai.com",
2025-05-28 00:15:39 +02:00
},
dynamicOgImage: true,
2025-05-28 04:04:47 +02:00
lang: "fr", // html lang code. Set this empty and default will be "en"
timezone: "Europe/Paris", // Default global timezone (IANA format) https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
2025-05-28 00:15:39 +02:00
} as const;