generated from makenotion/notion-sdk-typescript-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
notion-hugo.config.ts
30 lines (28 loc) · 846 Bytes
/
notion-hugo.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
import { UserConfig } from "./src/config"
const userConfig: UserConfig = {
mount: {
manual: false,
page_url: 'https://pcloud.notion.site/Notion-DoIt-04bcc51cfe4c49938229c35e4f0a6fb6',
pages: [
// {
// page_id: '<page_id>',
// target_folder: 'path/relative/to/content/folder'
// }
{
page_id: '45eb121158b9489480ec000fd25c812b',
target_folder: '.'
}
],
databases: [
// {
// database_id: '<database_id>',
// target_folder: 'path/relative/to/content/folder'
// }
{
database_id: 'b7b1816c05ec464391c8c111fa242985',
target_folder: '.'
}
],
}
}
export default userConfig;