19 lines
627 B
TypeScript
19 lines
627 B
TypeScript
export const SITE = {
|
|
website: "https://tiff.run/", // replace this with your deployed domain
|
|
author: "tiff w",
|
|
profile: "https://codeberg.org/tiff/",
|
|
desc: "A software blog by someone named tiff.",
|
|
title: "tiff on software",
|
|
ogImage: "astropaper-og.jpg",
|
|
lightAndDarkMode: true,
|
|
postPerIndex: 4,
|
|
postPerPage: 3,
|
|
scheduledPostMargin: 15 * 60 * 1000, // 15 minutes
|
|
showArchives: true,
|
|
showBackButton: true, // show back button in post detail
|
|
editPost: {
|
|
url: "https://github.com/twhite96/tiff-eng/edit/main/src/content/blog",
|
|
text: "Suggest Changes",
|
|
appendFilePath: true,
|
|
},
|
|
} as const;
|