-
Notifications
You must be signed in to change notification settings - Fork 0
/
contentlayer.config.ts
116 lines (110 loc) · 3.29 KB
/
contentlayer.config.ts
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
import {
defineDocumentType,
ComputedFields,
makeSource,
} from "contentlayer/source-files";
import readingTime from "reading-time";
import path from "path";
// Remark packages
import remarkGfm from "remark-gfm";
import remarkMath from "remark-math";
// Rehype packages
import rehypeSlug from "rehype-slug";
import rehypeAutolinkHeadings from "rehype-autolink-headings";
import rehypeKatex from "rehype-katex";
import rehypeCitation from "rehype-citation";
import rehypeImgSize from "rehype-img-size";
import rehypePrismPlus from "rehype-prism-plus";
import rehypePresetMinify from "rehype-preset-minify";
import remarkRuby from "remark-ruby";
const root = process.cwd();
const computedFields: ComputedFields = {
readingTime: { type: "json", resolve: (doc) => readingTime(doc.body.raw) },
slug: {
type: "string",
resolve: (doc) => doc._raw.flattenedPath.replace(/^.+?(\/)/, ""),
},
path: {
type: "string",
resolve: (doc) => doc._raw.flattenedPath,
},
filePath: {
type: "string",
resolve: (doc) => doc._raw.sourceFilePath,
},
};
export const Post = defineDocumentType(() => ({
name: "Post",
filePathPattern: "posts/**/*.mdx",
contentType: "mdx",
fields: {
title: { type: "string", required: true },
date: { type: "date", required: true },
tags: { type: "list", of: { type: "string" } },
lang: { type: "string", required: true },
lastmod: { type: "date" },
draft: { type: "boolean" },
hidden: { type: "boolean" },
summary: { type: "string" },
banner: { type: "string" },
images: { type: "list", of: { type: "string" } },
authors: { type: "list", of: { type: "string" } },
layout: { type: "string" },
bibliography: { type: "string" },
canonicalUrl: { type: "string" },
machineTranslated: { type: "boolean" },
},
computedFields,
}));
export const Page = defineDocumentType(() => ({
name: "Page",
filePathPattern: "pages/**/*.mdx",
contentType: "mdx",
fields: {
title: { type: "string", required: true },
lastmod: { type: "date" },
draft: { type: "boolean" },
hidden: { type: "boolean" },
summary: { type: "string" },
images: { type: "list", of: { type: "string" } },
layout: { type: "string" },
bibliography: { type: "string" },
canonicalUrl: { type: "string" },
},
computedFields,
}));
export const Authors = defineDocumentType(() => ({
name: "Authors",
filePathPattern: "authors/**/*.mdx",
contentType: "mdx",
fields: {
name: { type: "string", required: true },
avatar: { type: "string" },
occupation: { type: "string" },
company: { type: "string" },
email: { type: "string" },
twitter: { type: "string" },
github: { type: "string" },
layout: { type: "string" },
},
computedFields,
}));
export default makeSource({
contentDirPath: "data",
documentTypes: [Post, Authors, Page],
date: { timezone: "America/Los_Angeles" },
mdx: {
cwd: process.cwd(),
remarkPlugins: [remarkGfm, remarkMath, remarkRuby],
rehypePlugins: [
rehypeSlug,
rehypeAutolinkHeadings,
[rehypeKatex, { macros: { "\\O": "\\mathcal{O}" } }],
[rehypeCitation, { path: path.join(root, "data") }],
[rehypePrismPlus, { ignoreMissing: true }],
// @ts-ignore
[rehypeImgSize, { dir: "public" }],
rehypePresetMinify,
],
},
});