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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
import types from "./types.ts";
import authors from "./authors.ts";
import characters from "./characters.ts";
import contactLinks from "./contactLinks.ts";
import jobHistory from "./jobHistory.ts";
import notableProjects from "./notableProjects.ts";
import pronouns from "./pronouns.ts";
import resume from "./resume.ts";
import seriesDescriptions from "./seriesDescriptions.ts";
import signalBoost from "./signalboost.ts";
import vods from "./vods.ts";
export type Config = {
signalBoost: types.Person[];
defaultAuthor: types.Author;
authors: Record<string, types.Author>;
clackSet: string[];
webMentionEndpoint: string;
jobHistory: types.Job[];
seriesDescriptions: Record<string, string>;
resume: types.Resume;
notableProjects: types.Link[];
contactLinks: types.Link[];
pronouns: types.PronounSet[];
characters: types.Character[];
vods : types.StreamVOD[];
redirects?: Record<string, string>;
};
const config: Config = {
signalBoost,
defaultAuthor: authors["xe"],
authors,
clackSet: [
"Ashlynn",
"Terry Davis",
"Dennis Ritchie",
"Steven Hawking",
"Kris Nova",
],
webMentionEndpoint: "https://mi.within.website/api/webmention/accept",
jobHistory,
seriesDescriptions,
resume,
notableProjects,
contactLinks,
pronouns,
characters,
vods,
redirects: {
"/blog/🥺": "/blog/xn--ts9h",
},
};
export default config;
|