-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathgatsby-config.js
46 lines (46 loc) · 1.13 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
module.exports = {
siteMetadata: {
title: `Amplify Japan User Group`,
siteUrl: `https://aws-amplify-jp.github.io`,
},
plugins: [
{
resolve: `gatsby-source-filesystem`,
options: {
name: `markdown-pages`,
path: `${__dirname}/src/contents`,
ignore: [
`src/contents/external/mapping.json`,
`src/contents/external/.gitkeep`,
],
},
},
{
resolve: `gatsby-transformer-remark`,
options: {
plugins: [`gatsby-remark-component`],
},
},
`gatsby-plugin-react-helmet`,
`gatsby-plugin-material-ui`,
`gatsby-plugin-sitemap`,
{
resolve: `gatsby-plugin-gtag`,
options: {
trackingId: `G-8HMK0M9FE8`,
},
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `Amplify 日本ユーザーグループ (Amplify Japan User Group) `,
short_name: `Amplify 日本ユーザーグループ`,
start_url: `/`,
background_color: `#ffffff`,
theme_color: `#ff9900`,
display: `standalone`,
icon: `src/images/favicon-32x32.png`,
},
},
],
};