forked from tuyuritio/astro-theme-thought-lite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsite.config.ts
More file actions
37 lines (34 loc) · 719 Bytes
/
site.config.ts
File metadata and controls
37 lines (34 loc) · 719 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import siteConfig from "./src/utils/config";
const config = siteConfig({
title: "ThoughtLite",
prologue: "If you need a website\nthat loads fast and has great SEO, then Astro is for you.",
author: {
name: "Your Name",
email: "hi@your.mail",
link: "https://your.website"
},
description: "A modern Astro theme focused on content creation.",
copyright: {
type: "CC BY-NC-ND 4.0",
year: "2025"
},
i18n: {
locales: ["en", "zh-cn", "ja"],
defaultLocale: "en"
},
pagination: {
note: 15,
jotting: 24
},
heatmap: {
unit: "day",
weeks: 20
},
feed: {
section: "*",
limit: 20
},
latest: "*"
});
export const monolocale = Number(config.i18n.locales.length) === 1;
export default config;