···20202121```ts
2222// Site Info
2323-2423site: {
2525- // Site domain
2626- website: 'https://astro-chiri.netlify.app/',
2727- // Site title
2828- title: 'CHIRI',
2929- // Author name
3030- author: '3ASH',
3131- // Site description
3232- description: 'Minimal blog built by Astro',
3333- // Default language
3434- language: 'en-US'
2424+ website: 'https://astro-chiri.netlify.app/', // Site domain
2525+ title: 'CHIRI', // Site title
2626+ author: '3ASH', // Author name
2727+ description: 'Minimal blog built by Astro', // Site description
2828+ language: 'en-US' // Default language
3529},
3630```
37313832```ts
3933// General Settings
4040-4134general: {
4242- // Content area width
4343- contentWidth: '35rem',
4444- // Use centered layout (false for left-aligned)
4545- centeredLayout: true,
4646- // Show theme toggle button (uses system theme by default)
4747- themeToggle: false,
4848- // Show dotted divider in post list
4949- postListDottedDivider: false,
5050- // Show footer
5151- footer: true,
5252- // Enable fade animations
5353- fadeAnimation: true
3535+ contentWidth: '35rem', // Content area width
3636+ centeredLayout: true, // Use centered layout (false for left-aligned)
3737+ themeToggle: false, // Show theme toggle button (uses system theme by default)
3838+ postListDottedDivider: false, // Show dotted divider in post list
3939+ footer: true, // Show footer
4040+ fadeAnimation: true // Enable fade animations
5441},
5542```
56435744```ts
5845// Date Settings
5959-6046date: {
6161- // Date format: YYYY-MM-DD, MM-DD-YYYY, DD-MM-YYYY, MONTH DAY YYYY, DAY MONTH YYYY
6262- dateFormat: 'YYYY-MM-DD',
6363- // Date separator: . - / (except for MONTH DAY YYYY and DAY MONTH YYYY)
6464- dateSeparator: '.',
6565- // Date position in post list (true for right, false for left)
6666- dateOnRight: true
4747+ dateFormat: 'YYYY-MM-DD', // Date format: YYYY-MM-DD, MM-DD-YYYY, DD-MM-YYYY, MONTH DAY YYYY, DAY MONTH YYYY
4848+ dateSeparator: '.', // Date separator: . - / (except for MONTH DAY YYYY and DAY MONTH YYYY)
4949+ dateOnRight: true // Date position in post list (true for right, false for left)
6750},
6851```
69527053```ts
7154// Post Settings
7272-7355post: {
7474- // Show reading time in posts
7575- readingTime: false,
7676- // Show table of contents (when there is enough page width)
7777- toc: true,
7878- // Enable image viewer
7979- imageViewer: true,
8080- // Enable copy button in code blocks
8181- copyCode: true,
8282- // Enable link card
8383- linkCard: true
5656+ readingTime: false, // Show reading time in posts
5757+ toc: true, // Show table of contents (when there is enough page width)
5858+ imageViewer: true, // Enable image viewer
5959+ copyCode: true, // Enable copy button in code blocks
6060+ linkCard: true // Enable link card
8461}
8562```
8663