-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.ts
More file actions
23 lines (23 loc) · 957 Bytes
/
Copy pathconfig.ts
File metadata and controls
23 lines (23 loc) · 957 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
export const SITE = {
website: "https://algorithmich.github.io/", // replace this with your deployed domain
author: "Michelle Diaz",
profile: "https://github.com/algorithmich/",
desc: "A personal blog about machine learning, running, books, and more. Notes and reflections from a hyperactive mind.",
title: "Home",
ogImage: "algorithmich-og.png",
lightAndDarkMode: true,
postPerIndex: 5,
postPerPage: 5,
scheduledPostMargin: 15 * 60 * 1000, // 15 minutes
showArchives: true,
showBackButton: true, // show back button in post detail
editPost: {
enabled: false,
text: "Edit page",
url: "https://github.com/algorithmich/algorithmich.github.io",
},
dynamicOgImage: true,
dir: "ltr", // "rtl" | "auto"
lang: "en", // html lang code. Set this empty and default will be "en"
timezone: "Europe/Zurich", // Default global timezone (IANA format) https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
} as const;