-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscully.ledge.config.js
More file actions
83 lines (74 loc) · 1.9 KB
/
scully.ledge.config.js
File metadata and controls
83 lines (74 loc) · 1.9 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
const { Sitemap } = require('@gammastream/scully-plugin-sitemap');
const { registerPlugin } = require('@scullyio/scully');
const defaultPostRenderers = [Sitemap];
const sitemapOptions = {
urlPrefix: 'https://devops.phodal.com/',
sitemapFilename: 'sitemap.xml',
changeFreq: 'hourly',
priority: [
'1.0',
'0.9',
'0.8',
'0.7',
'0.6',
'0.5',
'0.4',
'0.3',
'0.2',
'0.1',
'0.0',
],
ignoredRoutes: ['/404'],
};
function casePlugin(route, config) {
return Promise.resolve([{ route: '/case-study/sample' }]);
}
function checklistsPlugin(route, config) {
return Promise.resolve([{ route: '/checklists/sample' }]);
}
function practisePlugin(route, config) {
return Promise.resolve([{ route: '/practise/sample' }]);
}
function maturiyPlugin(route, config) {
return Promise.resolve([{ route: '/maturity/sample' }]);
}
function skilltreePlugin(route, config) {
return Promise.resolve([{ route: '/skilltree/sample' }]);
}
const validator = async (conf) => [];
registerPlugin('router', 'case', casePlugin, validator);
registerPlugin('router', 'checklists', checklistsPlugin, validator);
registerPlugin('router', 'practise', practisePlugin, validator);
registerPlugin('router', 'maturity', maturiyPlugin, validator);
registerPlugin('router', 'skilltree', skilltreePlugin, validator);
exports.config = {
projectRoot: './src',
projectName: 'ledge',
outDir: './dist/static',
puppeteerLaunchOptions: {
args: ['--no-sandbox', '--disable-setuid-sandbox'],
defaultViewport: {
width: 1440,
height: 1080,
},
},
sitemapOptions,
defaultPostRenderers,
routes: {
'/case-study/:case': {
type: 'case',
},
'/checklists/:name': {
type: 'checklists',
},
'/practise/:practise': {
type: 'practise',
},
'/maturity/:name': {
type: 'maturity',
},
'/skilltree/:skilltree': {
type: 'skilltree',
},
},
};