mirror of
https://github.com/saicaca/fuwari.git
synced 2026-01-11 06:42:53 +01:00
fix: update language options in SiteConfig for clarity and completeness
Some checks failed
Code quality / quality (push) Failing after 11s
Build and Check / Astro Check for Node.js 22 (push) Failing after 5s
Build and Check / Astro Check for Node.js 23 (push) Failing after 4s
Build and Check / Astro Build for Node.js 22 (push) Failing after 4s
Build and Check / Astro Build for Node.js 23 (push) Failing after 4s
Some checks failed
Code quality / quality (push) Failing after 11s
Build and Check / Astro Check for Node.js 22 (push) Failing after 5s
Build and Check / Astro Check for Node.js 23 (push) Failing after 4s
Build and Check / Astro Build for Node.js 22 (push) Failing after 4s
Build and Check / Astro Build for Node.js 23 (push) Failing after 4s
This commit is contained in:
@@ -10,7 +10,7 @@ import { LinkPreset } from "./types/config";
|
|||||||
export const siteConfig: SiteConfig = {
|
export const siteConfig: SiteConfig = {
|
||||||
title: "Fuwari",
|
title: "Fuwari",
|
||||||
subtitle: "Demo Site",
|
subtitle: "Demo Site",
|
||||||
lang: "en", // 'en', 'zh_CN', 'zh_TW', 'ja', 'ko', 'es', 'th', 'vi', 'id'
|
lang: "en", // Language code, e.g. 'en', 'zh-CN', 'ja', etc.
|
||||||
themeColor: {
|
themeColor: {
|
||||||
hue: 250, // Default hue for the theme color, from 0 to 360. e.g. red: 0, teal: 200, cyan: 250, pink: 345
|
hue: 250, // Default hue for the theme color, from 0 to 360. e.g. red: 0, teal: 200, cyan: 250, pink: 345
|
||||||
fixed: false, // Hide the theme color picker for visitors
|
fixed: false, // Hide the theme color picker for visitors
|
||||||
|
|||||||
@@ -4,7 +4,17 @@ export type SiteConfig = {
|
|||||||
title: string;
|
title: string;
|
||||||
subtitle: string;
|
subtitle: string;
|
||||||
|
|
||||||
lang: "en" | "zh_CN" | "zh_TW" | "ja" | "ko" | "es" | "th" | "vi" | "tr";
|
lang:
|
||||||
|
| "en"
|
||||||
|
| "zh_CN"
|
||||||
|
| "zh_TW"
|
||||||
|
| "ja"
|
||||||
|
| "ko"
|
||||||
|
| "es"
|
||||||
|
| "th"
|
||||||
|
| "vi"
|
||||||
|
| "tr"
|
||||||
|
| "id";
|
||||||
|
|
||||||
themeColor: {
|
themeColor: {
|
||||||
hue: number;
|
hue: number;
|
||||||
|
|||||||
Reference in New Issue
Block a user