2023-12-25 17:21:39 +08:00
|
|
|
import { Config } from "@/data/config";
|
|
|
|
|
import path from "path";
|
|
|
|
|
import process from "process";
|
|
|
|
|
|
|
|
|
|
export const LatestPostCountInHomePage = 5;
|
|
|
|
|
export const PostCountPerPagination = 5;
|
|
|
|
|
export const PostsRootDirectory = path.join(process.cwd(), "./data/posts");
|
|
|
|
|
|
2023-12-29 19:55:54 +08:00
|
|
|
export const RSSFeedURL = `https://${Config.SiteDomain}/rss.xml`;
|
|
|
|
|
export const WebsiteURL = `https://${Config.SiteDomain}/`;
|
|
|
|
|
|
|
|
|
|
export const CopyrightAnnouncement = `COPYRIGHT © ${Config.YearStart}-${new Date().getFullYear()} ${
|
|
|
|
|
Config.AuthorName
|
|
|
|
|
} ALL RIGHTS RESERVED`;
|