-
-
Notifications
You must be signed in to change notification settings - Fork 72
/
gatsby-config.js
70 lines (70 loc) Β· 2 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
/**
* Configure your Gatsby site with this file.
*
* See: https://www.gatsbyjs.org/docs/gatsby-config/
*/
module.exports = {
/* Your site config here */
pathPrefix: "/",
siteMetadata: {
title: `Footsteps`,
titleAlt: `Footsteps App`,
siteLanguage: `en`,
ogLanguage: `en_US`,
titleTemplate: `%s | Community-made π§βπ€βπ§learning paths`,
description: `Every expert was a beginner once. They tried and learnt things their own way. Join footsteps to learn from the journey of experts.`,
shortName: `Footsteps`,
url: `https://www.footsteps.dev`, // No trailing slash allowed!
siteUrl: `https://www.footsteps.dev`,
image: `/images/img_share.png`, // Path to your image you placed in the 'static' folder
favicon: `/favicon.ico`,
author: `@fnplusofficial`,
twitter: `@fnplusofficial`,
facebook: `fnplusofficial`,
twitterUsername: `@fnplusofficial`,
},
plugins: [
`gatsby-plugin-netlify`,
`gatsby-plugin-sitemap`,
`gatsby-plugin-react-helmet`,
{
resolve: `gatsby-plugin-google-analytics`,
options: {
trackingId: process.env.GATSBY_GOOGLE_TRACKING_ID,
head: true,
},
},
{
resolve: `gatsby-plugin-create-client-paths`,
options: { prefixes: [`/user/*`, `/editPath/*`] },
},
{
resolve: `gatsby-plugin-typography`,
options: {
pathToConfigModule: `src/utils/typography`,
},
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `Footsteps: Community-made π§βπ€βπ§learning paths`,
short_name: `Footsteps`,
start_url: `/`,
icon: `src/images/icon.png`,
background_color: `#f7f0eb`,
theme_color: `#a2466c`,
display: `standalone`,
},
},
`gatsby-plugin-offline`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: `${__dirname}/src/images/`,
},
},
"gatsby-transformer-sharp",
"gatsby-plugin-sharp",
],
}