[READ-ONLY] Mirror of https://github.com/flo-bit/dogumentation. Simple, minimalistic documentation template using astro flo-bit.dev/dogumentation/
0

Configure Feed

Select the types of activity you want to include in your feed.

dogumentation / src / config.ts
1.3 kB 57 lines
1 2export const config: Config = { 3 SITE: "https://flo-bit.dev", 4 BASE: "/dogumentation", 5 6 SITE_NAME: "Dogumentation", 7 SITE_DESCRIPTION: "Simple, minimalistic documentation template using astro", 8 SITE_FAVICON: "🐶", 9 10 SHOW_THEME_TOGGLE: true, 11 SEARCH_ENABLED: true, 12 13 BASE_COLOR: "zinc", 14 ACCENT_COLOR: "cyan", 15 16 SOCIAL_LINKS: { 17 FACEBOOK_URL: "", 18 TWITTER_URL: "", 19 GITHUB_URL: "https://github.com/flo-bit/dogumentation", 20 LINKEDIN_URL: "", 21 YOUTUBE_URL: "", 22 BLUESKY_URL: "", 23 DISCORD_URL: "#", 24 EMAIL: "" 25 } 26 }; 27 28 type Config = { 29 SITE: string; 30 BASE: string; 31 32 SITE_NAME: string; 33 SITE_DESCRIPTION: string; 34 SITE_FAVICON: string; 35 36 SHOW_THEME_TOGGLE: boolean; 37 SEARCH_ENABLED: boolean; 38 39 BASE_COLOR: BASE_COLORS; 40 ACCENT_COLOR: ACCENT_COLORS; 41 42 SOCIAL_LINKS: Partial<{ 43 FACEBOOK_URL: string; 44 TWITTER_URL: string; 45 GITHUB_URL: string; 46 LINKEDIN_URL: string; 47 YOUTUBE_URL: string; 48 BLUESKY_URL: string; 49 DISCORD_URL: string; 50 EMAIL: string; 51 }>; 52 } 53 54 type BASE_COLORS = "zinc" | "slate" | "neutral" | "stone" | "gray"; 55 type ACCENT_COLORS = "red" | "orange" | "amber" | "yellow" | "lime" | "green" | "emerald" | "teal" | "cyan" | "sky" | "blue" | "indigo" | "violet" | "purple" | "fuchsia" | "pink" | "rose"; 56 57 export default config;