-
Notifications
You must be signed in to change notification settings - Fork 13
/
app.config.js
51 lines (44 loc) · 1.38 KB
/
app.config.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/**
* Global application config file
*/
const appConfig = {
/**
* The number of posts to fetch per 'page'.
*/
postsPerPage: 9,
/**
* The number of projects to fetch per 'page'.
*/
projectsPerPage: 5,
/**
* The number of post featured images that are above the fold for most screen sizes.
* These images will be considered high priority and preloaded.
*/
postsAboveTheFold: 6,
/**
* The number of project featured images that are above the fold for most screen sizes.
* These images will be considered high priority and preloaded.
*/
projectsAboveTheFold: 3,
/**
* Displays a default Featured Image when a Post does not have one.
*/
archiveDisplayFeaturedImage: true,
/**
* This app's primary color.
* @see {@link https://github.com/wpengine/atlas-blueprint-portfolio/blob/main/src/components/ThemeStyles/ThemeStyles.js}
*/
themeColor: 'blue',
/**
* @type {[key: 'twitterUrl' | 'facebookUrl' | 'instagramUrl' | 'youtubeUrl' | 'githubUrl' | 'linkedinUrl']: string}
*/
socialLinks: {
twitterUrl: 'https://twitter.com/wpengine',
facebookUrl: 'https://www.facebook.com/wpengine',
instagramUrl: 'https://www.instagram.com/wpengine/',
youtubeUrl: 'https://youtube.com/wpengine',
githubUrl: 'https://github.com/wpengine',
linkedinUrl: 'https://www.linkedin.com/company/wpengine',
},
};
export default appConfig;