-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgatsby-config.js
67 lines (66 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
module.exports = {
// pathPrefix: "/arpitsheth",
// TODO - Update site metadata to reflect your site's info
siteMetadata: {
// Used for the title template on pages other than the index site
siteTitle: `Arpit Sheth`,
// Default title of the page
siteTitleAlt: `Arpit Sheth`,
// Can be used for e.g. JSONLD
siteHeadline: `Arpit Sheth`,
// Will be used to generate absolute URLs for og:image etc.
siteUrl: `https://arpitsheth.com/`,
// Used for SEO
siteDescription: `🎈 I am a startup-savvy engineer building technology for a more creative future.`,
// Will be set on the <html /> tag
siteLanguage: `en`,
// Used for og:image and must be placed inside the `static` folder
siteImage: `/banner.png`,
// Twitter Handle
author: `@shetharp`,
},
plugins: [
{
resolve: `@shetharp/gatsby-theme-polaroid`,
options: {},
},
{
resolve: `gatsby-plugin-google-analytics`,
options: {
trackingId: "UA-34029885-1", // TODO - Configure Google Analytics for your site
},
},
`gatsby-plugin-sitemap`,
{
// TODO - Update manifest options for your site
resolve: `gatsby-plugin-manifest`,
options: {
name: `Arpit Sheth`,
short_name: `arpitsheth`,
description: `🎈 I am a startup-savvy engineer building technology for a more creative future.`,
start_url: `/`,
background_color: `#fff`,
theme_color: `#333333`,
display: `standalone`,
icons: [
{
src: `/favicon-192.png`,
sizes: `192x192`,
type: `image/png`,
},
],
},
},
{
// TODO - Update webfonts for your site.
// Alternatively, you can install Google Fonts as npm packages with the Typefaces Project
// Learn more: https://github.com/KyleAMathews/typefaces
resolve: "gatsby-plugin-web-font-loader",
options: {
typekit: {
id: "iut6dno",
},
},
},
],
};