-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathgatsby-config.js
67 lines (67 loc) · 2.06 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
module.exports = {
siteMetadata: {
siteUrl: "https://adventure.ustwo.com",
siteTitle: "ustwo Adventure",
siteDescription:
"We created ustwo Adventures to support early-stage initiatives grounded in creativity and the desire to make a positive impact.",
siteImage: "https://adventure.ustwo.com/meta_image.png",
twitter: "@ustwoadventure",
name: "ustwo Adventure"
},
plugins: [
"gatsby-plugin-linaria",
{
resolve: "gatsby-plugin-manifest",
options: {
name: "ustwo Adventure",
short_name: "ustwo Adventure",
start_url: "/",
display: "minimal-ui",
icon: "./src/assets/favicon.png"
}
},
"gatsby-plugin-sitemap",
"gatsby-plugin-robots-txt",
{
resolve: "gatsby-plugin-layout",
options: {
component: require.resolve("./src/components/layout.jsx")
}
},
"gatsby-plugin-netlify",
{
resolve: "gatsby-plugin-mailchimp",
options: {
endpoint:
"https://ustwo.us15.list-manage.com/subscribe/post?u=01fc7ee99c29d28e16dc3776f&id=9e2f3ee259"
}
},
"gatsby-plugin-react-helmet",
"gatsby-plugin-eslint",
"gatsby-plugin-sharp",
"gatsby-transformer-sharp",
{
resolve: "gatsby-plugin-canonical-urls",
options: {
siteUrl: "https://adventure.ustwo.com"
}
},
{
resolve: "gatsby-plugin-postcss",
options: {
postCssPlugins: [
require("postcss-custom-media")(),
require("postcss-subgrid")({ ieHack: false })
]
}
},
{
resolve: "gatsby-plugin-web-font-loader",
options: {
google: {
families: ["DM Sans"]
}
}
}
]
};