devblog/src/config.ts

20 lines
627 B
TypeScript
Raw Normal View History

2025-03-08 19:45:21 -05:00
export const SITE = {
website: "https://tiff.run/", // replace this with your deployed domain
2024-12-25 02:14:10 -05:00
author: "tiff w",
profile: "https://codeberg.org/tiff/",
2024-12-25 02:14:10 -05:00
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,
2025-03-08 19:45:21 -05:00
showBackButton: true, // show back button in post detail
2024-12-25 02:14:10 -05:00
editPost: {
2025-03-14 18:29:07 -04:00
url: "https://github.com/twhite96/tiff-eng/edit/main/src/content/blog",
2024-12-25 02:14:10 -05:00
text: "Suggest Changes",
appendFilePath: true,
},
} as const;