-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsite-settings.js
More file actions
29 lines (22 loc) · 838 Bytes
/
site-settings.js
File metadata and controls
29 lines (22 loc) · 838 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
// "." is the root language. Pages should alias it to English.
export let Langs = [".", "en"]
export let DefaultLang = "en"
export let OriginURL = "https://bitzquad.com"
// Additional Static Routes that are
// not detected from link crawling or directory structure
// Typically these are routes with path parameters
export let AdditionalStaticRoutes = [
]
export let RemovePaths = [
"/about",
]
export let ExcludeInSiteMap = [
"/error",
]
export let TextFolder = "./src/lib/Text"
export let TextTSV_URL = "https://docs.google.com/spreadsheets/d/1KskuvNHKYRGvoMbk4izAkUITJB7mKAgDLcDm_2mVeBQ/export?format=tsv&id=1KskuvNHKYRGvoMbk4izAkUITJB7mKAgDLcDm_2mVeBQ&gid=0"
export let TextTSV_Header_Section = "Section"
export let TextTSV_Header_Identifier = "Identifier"
export let TextTSV_Header_Languages = {
"English": "en",
}