Squashed commit of the following:

commit 54078a69f8
Author: Ad-closeNN <1709301095@qq.com>
Date:   Thu Aug 7 23:33:17 2025 +0800

    2025/8/7

commit f65632b1e8
Author: Ad-closeNN <1709301095@qq.com>
Date:   Thu Aug 7 18:45:38 2025 +0800

    Finish

commit 7986271c89
Author: Ad-closeNN <1709301095@qq.com>
Date:   Thu Aug 7 17:41:57 2025 +0800

    Delete umami.md

commit fc0208cf4f
Author: Ad-closeNN <1709301095@qq.com>
Date:   Thu Aug 7 17:38:53 2025 +0800

    测试第一篇文章

commit 690d1290e4
Author: Ad-closeNN <1709301095@qq.com>
Date:   Thu Aug 7 11:56:58 2025 +0800

    feat: 博客访问量测试

commit 135830db3c
Author: Ad-closeNN <1709301095@qq.com>
Date:   Thu Aug 7 00:30:57 2025 +0800

    25/8/6
This commit is contained in:
Ad-closeNN
2025-08-07 23:33:48 +08:00
parent b62aa887e7
commit 5fbc350af2
49 changed files with 1073 additions and 734 deletions
+24 -1
View File
@@ -20,6 +20,17 @@ export type SiteConfig = {
hue: number;
fixed: boolean;
};
background: {
enable: boolean;
src: string;
position?: "top" | "center" | "bottom";
size?: "cover" | "contain" | "auto";
repeat?: "no-repeat" | "repeat" | "repeat-x" | "repeat-y";
attachment?: "fixed" | "scroll" | "local";
opacity?: number;
};
banner: {
enable: boolean;
src: string;
@@ -80,7 +91,6 @@ export type LicenseConfig = {
export type LIGHT_DARK_MODE =
| typeof LIGHT_MODE
| typeof DARK_MODE
| typeof AUTO_MODE;
export type BlogPostData = {
body: string;
@@ -100,3 +110,16 @@ export type BlogPostData = {
export type ExpressiveCodeConfig = {
theme: string;
};
export type ImageFallbackConfig = {
enable: boolean;
originalDomain: string;
fallbackDomain: string;
};
export type UmamiConfig = {
enable: boolean;
baseUrl: string;
shareId: string;
timezone: string;
};