devblog/src/config.ts

20 lines
637 B
TypeScript
Raw Normal View History

2025-03-08 19:45:21 -05:00
export const SITE = {
2024-12-25 02:14:10 -05:00
website: "https://tiff.engineer/", // replace this with your deployed domain
author: "tiff w",
profile: "https://about.tiff.engineer/",
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: {
url: "https://github.com/satnaing/astro-paper/edit/main/src/content/blog",
text: "Suggest Changes",
appendFilePath: true,
},
} as const;