-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathmagidoc.mjs
69 lines (66 loc) · 2.33 KB
/
magidoc.mjs
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
62
63
64
65
66
67
68
69
import { fileURLToPath } from 'url'
const { pages } = await import(`./pages.mjs?id=${Math.random()}`)
/**
* @type {import("@magidoc/cli").MagidocConfiguration}
*/
const config = {
introspection: {
type: 'none',
},
website: {
template: fileURLToPath(new URL('../packages/starters/carbon-multi-page', import.meta.url)),
output: fileURLToPath(new URL('./build', import.meta.url)),
staticAssets: fileURLToPath(new URL('./assets', import.meta.url)),
options: {
appTitle: 'Magidoc',
appFavicon: 'https://raw.githubusercontent.com/magidoc-org/magidoc/main/logo/logo_full.png',
pages: pages,
externalLinks: [
{
label: 'Star us!',
kind: 'GitHub',
href: 'https://github.com/magidoc-org/magidoc',
position: 'header',
},
{
group: 'Demo',
label: 'Carbon-Multi-Page',
href: 'https://magidoc-carbon-multi-page.netlify.app/welcome',
},
{
group: 'Articles',
label: 'Medium tutorial',
kind: 'medium',
href: 'https://medium.com/@sunnypelletier01/autogenerate-graphql-documentation-with-magidoc-53235f5d6dec',
},
{
group: 'Articles',
label: 'Why static documentation?',
kind: 'article',
href: 'https://dev.to/pelletier197/why-you-need-static-documentation-for-your-graphql-api-19ol',
},
{
group: 'Others',
label: 'Product Hunt',
kind: 'article',
href: 'https://www.producthunt.com/posts/magidoc',
},
],
siteMeta: {
description: 'Fully featured, fast and highly customizable GraphQL static documentation website generator.',
'og:description':
'Fully featured, fast and highly customizable GraphQL static documentation website generator.',
keywords:
'svelte,sveltekit,svelte-kit,prismjs,markedjs,marked,graphql,documentation,docs,static,javascript,nodejs',
author: 'Magidoc-org',
'og:title': 'Magidoc',
'og:type': 'article',
'og:image': 'https://raw.githubusercontent.com/magidoc-org/magidoc/main/logo/logo_full.png',
},
},
},
dev: {
watch: [fileURLToPath(new URL('./pages', import.meta.url)), fileURLToPath(new URL('./pages.mjs', import.meta.url))],
},
}
export default config