forked from Supernova-Studio/exporter-documentation
-
Notifications
You must be signed in to change notification settings - Fork 1
/
output.json
33 lines (33 loc) · 1.22 KB
/
output.json
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
{
"blueprints": [{
"invoke": "full_page.pr",
"write_using": "full_page_path.pr",
"comment": "Main blueprint that is invoked for each page. This blueprint is invoked exactly as many times as there are pages, with different `pageId`"
},
{
"invoke": "index_page.pr",
"write_to": "index.html",
"comment": "Create entrypoint for the documentation. Will immediately redirect to the first page of the docs"
},
{
"invoke": "search_index.pr",
"write_to": "si.js",
"comment": "Create index data for the entire documentation to be used with fuse.js"
},
{
"invoke": "custom_styling.pr",
"write_to": "assets/dist/custom.css",
"comment": "Create file containing custom styling information"
},
{
"invoke": "sitemap.pr",
"write_to": "sitemap.xml",
"comment": "Create file containing documentation sitemap"
}
],
"resources": [{
"resource": "*",
"write_to": "assets",
"comment": "Copy all resources defined inside /asset directory into /asset directory on the output"
}]
}