mirror of
https://github.com/Ad-closeNN/blog-fuwari.git
synced 2026-05-31 02:20:05 -04:00
Squashed commit of the following:
commit54078a69f8Author: Ad-closeNN <1709301095@qq.com> Date: Thu Aug 7 23:33:17 2025 +0800 2025/8/7 commitf65632b1e8Author: Ad-closeNN <1709301095@qq.com> Date: Thu Aug 7 18:45:38 2025 +0800 Finish commit7986271c89Author: Ad-closeNN <1709301095@qq.com> Date: Thu Aug 7 17:41:57 2025 +0800 Delete umami.md commitfc0208cf4fAuthor: Ad-closeNN <1709301095@qq.com> Date: Thu Aug 7 17:38:53 2025 +0800 测试第一篇文章 commit690d1290e4Author: Ad-closeNN <1709301095@qq.com> Date: Thu Aug 7 11:56:58 2025 +0800 feat: 博客访问量测试 commit135830db3cAuthor: Ad-closeNN <1709301095@qq.com> Date: Thu Aug 7 00:30:57 2025 +0800 25/8/6
This commit is contained in:
+24
-1
@@ -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;
|
||||
};
|
||||
Reference in New Issue
Block a user