Fork of Chiri for Astro for my blog
0
fork

Configure Feed

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

at 2eaef78de77e2eddaf90dd4a4e1d123c35d7a76d 37 lines 1.7 kB view raw
1import type { ThemeConfig } from './types' 2 3export const themeConfig: ThemeConfig = { 4 // SITE INFO /////////////////////////////////////////////////////////////////////////////////////////// 5 site: { 6 website: 'https://astro-chiri.netlify.app/', // Site domain 7 title: 'CHIRI', // Site title 8 author: '3ASH', // Author name 9 description: 'Minimal blog built by Astro', // Site description 10 language: 'en-US' // Default language 11 }, 12 13 // GENERAL SETTINGS //////////////////////////////////////////////////////////////////////////////////// 14 general: { 15 contentWidth: '35rem', // Content area width 16 centeredLayout: true, // Use centered layout (false for left-aligned) 17 favicon: false, // Show favicon on index page 18 themeToggle: false, // Show theme toggle button (uses system theme by default) 19 footer: true, // Show footer 20 fadeAnimation: true // Enable fade animations 21 }, 22 23 // DATE SETTINGS /////////////////////////////////////////////////////////////////////////////////////// 24 date: { 25 dateFormat: 'YYYY-MM-DD', // Date format: YYYY-MM-DD, MM-DD-YYYY, DD-MM-YYYY, MONTH DAY YYYY, DAY MONTH YYYY 26 dateSeparator: '.', // Date separator: . - / (except for MONTH DAY YYYY and DAY MONTH YYYY) 27 dateOnRight: true // Date position in post list (true for right, false for left) 28 }, 29 30 // POST SETTINGS /////////////////////////////////////////////////////////////////////////////////////// 31 post: { 32 readingTime: false, // Show reading time in posts 33 toc: true, // Show the table of contents (when there is enough page width) 34 imageViewer: true, // Enable image viewer 35 copyCode: true // Enable copy button in code blocks 36 } 37}