-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsourcebit.js
34 lines (32 loc) · 901 Bytes
/
sourcebit.js
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
/* eslint-disable-next-line @typescript-eslint/no-var-requires */
const path = require('path');
const isDev = process.env.NODE_ENV === 'development';
module.exports = {
plugins: [
{
module: require('sourcebit-source-filesystem'),
options: {
watch: isDev,
sources: [
{ name: 'pages', path: path.resolve(__dirname, 'content/pages') },
{ name: 'data', path: path.resolve(__dirname, 'content/data') },
],
},
},
{
module: require('sourcebit-target-next'),
options: {
liveUpdate: isDev,
flattenAssetUrls: true,
pages(objects) {
return objects
.filter((object) => object.__metadata.sourceName === 'pages')
.map((object) => ({
...object.frontmatter,
__metadata: object.__metadata,
}));
},
},
},
],
};