forked from aws-amplify/learn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
151 lines (137 loc) · 3.25 KB
/
gatsby-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
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
const {join} = require('path');
const {map} = require('ramda');
const TITLE =
'Amplify Community –– a place to share projects, events, articles and other resources';
const SHORT_NAME = 'Amplify Community';
const SITE_URL = 'https://amplify.aws/community/';
const DESCRIPTION =
'A place to share projects, events, articles and other resources';
const GITHUB = 'https://github.com/aws-amplify';
const TWITTER = 'https://twitter.com/AWSAmplify';
const YOUTUBE = 'https://www.youtube.com/channel/UCd6MoB9NC6uYN2grvUNT-Zg';
const BACKGROUND_COLOR = '#f29d38';
const THEME_COLOR = '#f1d148';
const ICON_PATH = join(__dirname, 'src/assets/images/icon.png');
const siteMetadata = {
title: TITLE,
description: DESCRIPTION,
siteUrl: SITE_URL,
social: {
github: GITHUB,
twitter: TWITTER,
youtube: YOUTUBE,
},
};
const moduleResolution = {
resolve: 'gatsby-plugin-module-resolver',
options: {
root: '.',
aliases: {
'~': './src',
},
},
};
const sourceNames = [
'contributors',
'posts',
'events',
'newsletter-injections',
'misc',
];
const dataSources = map(
name => ({
resolve: 'gatsby-source-filesystem',
options: {
name,
path: join(__dirname, `content/${name}`),
ignore: ['**/README.md'],
},
}),
sourceNames,
);
const mapping = {
'MarkdownRemark.fields.authors': 'MarkdownRemark.fields.id',
'MarkdownRemark.fields.attendants': 'MarkdownRemark.fields.id',
'MarkdownRemark.frontmatter.posts.post': 'MarkdownRemark.fields.id',
};
const markdownTransformer = {
resolve: 'gatsby-transformer-remark',
options: {
plugins: [
'gatsby-remark-images',
'gatsby-remark-responsive-iframe',
'gatsby-plugin-twitter',
'gatsby-remark-embed-video',
'gatsby-remark-embed-gist',
'gatsby-remark-prismjs',
'gatsby-remark-copy-linked-files',
'gatsby-remark-smartypants',
],
},
};
// prettier-ignore
const imageTransformers = [
'gatsby-transformer-sharp',
'gatsby-plugin-sharp',
]
const emotion = {
resolve: 'gatsby-plugin-emotion',
// options: {
// labelFormat: '[dirname]-[filename]-[local]',
// },
};
const manifest = {
resolve: 'gatsby-plugin-manifest',
options: {
name: TITLE,
short_name: SHORT_NAME,
start_url: '/community/',
display: 'minimal-ui',
background_color: BACKGROUND_COLOR,
theme_color: THEME_COLOR,
icon: ICON_PATH,
},
};
// const favicon = {
// resolve: `gatsby-plugin-favicon`,
// options: {
// logo: ICON_PATH,
// appName: 'Amplify Community',
// dir: 'auto',
// lang: 'en-US',
// background: '#fff',
// theme_color: '#fff',
// display: 'standalone',
// orientation: 'any',
// start_url: '/',
// version: '1.0',
// icons: {
// android: true,
// appleIcon: true,
// appleStartup: true,
// coast: false,
// favicons: true,
// firefox: true,
// },
// },
// };
const misc = [
'gatsby-plugin-react-helmet',
'gatsby-plugin-offline',
'gatsby-plugin-webpack-bundle-analyzer',
];
module.exports = {
siteMetadata,
pathPrefix: '/community',
mapping,
plugins: [
moduleResolution,
...dataSources,
markdownTransformer,
...imageTransformers,
emotion,
manifest,
...misc,
// favicon,
],
};