-
Notifications
You must be signed in to change notification settings - Fork 50
/
contentlayer.config.ts
61 lines (54 loc) · 1.52 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
import { defineDocumentType, makeSource, ComputedFields } from 'contentlayer/source-files' // eslint-disable-line
import readingTime from 'reading-time'
import rehypePrism from 'rehype-prism-plus'
import codeTitle from 'remark-code-titles'
const imgReg = new RegExp(/https:\/\/(.*)\.(png|jpeg|gif|svg|jpg)/)
const getCoverImg = doc => {
const { raw } = doc.body
const match = raw.match(imgReg)
if (match) {
return match[0]
}
return '/blog/default/image.png'
}
const getSlug = doc => {
const name = doc._raw.sourceFileName.replace(/\.mdx$/, '')
return name
}
const computedFields: ComputedFields = {
slug: {
type: 'string',
resolve: doc => getSlug(doc),
},
image: {
type: 'string',
resolve: doc => getCoverImg(doc),
// resolve: doc => `/blog/${getSlug(doc)}/image.png`,
},
og: {
type: 'string',
resolve: doc => `/blog/${getSlug(doc)}/og.png`,
},
readingTime: { type: 'json', resolve: doc => readingTime(doc.body.raw) },
}
export const Post = defineDocumentType(() => ({
name: 'Post',
filePathPattern: `**/*.mdx`,
bodyType: 'mdx',
fields: {
title: { type: 'string', required: true },
summary: { type: 'string', required: true },
publishedAt: { type: 'string', required: true },
updatedAt: { type: 'string', required: false },
tags: { type: 'json', required: false },
},
computedFields,
}))
export default makeSource({
contentDirPath: 'data/blog',
documentTypes: [Post],
mdx: {
rehypePlugins: [rehypePrism],
remarkPlugins: [codeTitle],
},
})