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 13f0e403e527bf110a9effe0be589c9bfda2f62a 38 lines 1.8 kB view raw
1import type { ThemeConfig } from './types' 2 3export const themeConfig: ThemeConfig = { 4 // SITE INFO /////////////////////////////////////////////////////////////////////////////////////////// 5 site: { 6 website: 'https://stalwart-lamington-32b5ec.netlify.app/', // Site domain 7 title: 'augment', // Site title 8 author: 'Anuj Ahooja', // Author name 9 description: 'A blog by Anuj Ahooja', // 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 themeToggle: false, // Show theme toggle button (uses system theme by default) 18 postListDottedDivider: false, // Show dotted divider in post list 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 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 linkCard: true // Enable link card 37 } 38}