-
Notifications
You must be signed in to change notification settings - Fork 3
/
contentlayer.config.ts
57 lines (53 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
// contentlayer.config.ts
import { defineDocumentType, makeSource } from 'contentlayer/source-files';
import slugify from './components/utils/slugify';
export const Post = defineDocumentType(() => ({
name: 'Post',
filePathPattern: `blog/posts/**/*.md`,
fields: {
title: { type: 'string', required: true },
date: { type: 'date', required: true },
authors: { type: 'list', of: { type: 'string' }, required: true },
topics: { type: 'list', of: { type: 'string' }, required: false },
hero: { type: 'string', required: false },
},
computedFields: {
url: {
type: 'string',
resolve: (post) => `/post/${slugify(post.title)}`,
},
},
}));
export const Author = defineDocumentType(() => ({
name: 'Author',
filePathPattern: `blog/authors/**/*.md`,
fields: {
title: { type: 'string', required: true },
headshot: { type: 'string', required: false },
biography: { type: 'string', required: false },
},
computedFields: {
url: {
type: 'string',
resolve: (author) => `/authors/${slugify(author.title)}`,
},
},
}));
export const Topic = defineDocumentType(() => ({
name: 'Topic',
filePathPattern: `blog/topics/**/*.md`,
fields: {
title: { type: 'string', required: true },
description: { type: 'string', required: false },
},
computedFields: {
url: {
type: 'string',
resolve: (topic) => `/topics/${slugify(topic.title)}`,
},
},
}));
export default makeSource({
contentDirPath: 'content',
documentTypes: [Post, Author, Topic],
});