fix theme
Some checks failed
Deploy to Cloudflare Pages / deploy (push) Failing after 15m19s

This commit is contained in:
2025-06-14 01:17:18 +09:00
parent af5243ccdb
commit c279d2a0e5
4 changed files with 12 additions and 3 deletions

View File

@ -23,6 +23,7 @@ pub struct SiteConfig {
#[derive(Debug, Serialize, Deserialize, Clone)]
pub struct BuildConfig {
pub highlight_code: bool,
pub highlight_theme: Option<String>,
pub minify: bool,
}
@ -146,6 +147,7 @@ impl Default for Config {
},
build: BuildConfig {
highlight_code: true,
highlight_theme: Some("Monokai".to_string()),
minify: false,
},
ai: Some(AiConfig {