This commit is contained in:
2026-01-16 12:33:01 +08:00
parent 07098a1bf7
commit 5c579df611
6 changed files with 87 additions and 2 deletions

View File

@@ -78,6 +78,11 @@ export interface UmamiConfig {
apiEndpoint?: string;
}
export interface AdConfig {
enable?: boolean;
ads?: [{ text?: string; link?: string; img?: string }];
}
export interface SiteConfig {
siteMeta: SiteMeta;
hero: Hero;
@@ -91,4 +96,5 @@ export interface SiteConfig {
footer?: Footer;
comment?: CommentConfig;
umami?: UmamiConfig;
ad?: AdConfig;
}