-
Notifications
You must be signed in to change notification settings - Fork 2
/
gatsby-config.js
61 lines (61 loc) · 1.63 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
module.exports = {
siteMetadata: {
title: `Rohan Prasad`,
description: `Rohan is a Software Engineer based in India , currently working at Microsoft as a UX Developer - Consultant`,
author: `@rohanprasadofficial`,
youtube: `@rohanprasadofficial`,
linkedin: `@rohanprasadofficial`,
twitter: `@rohanpdofficial`,
instagram: `@rohanprasadofficial`,
},
plugins: [
`gatsby-plugin-react-helmet`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: `${__dirname}/src/images`,
},
},
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `Rohan Prasad`,
short_name: `Ro.`,
start_url: `/`,
background_color: "#00000",
theme_color: "#ffffff",
display: `standalone`,
icon: `src/images/logo.png`,
crossOrigin: `use-credentials`,
// This path is relative to the root of the site.
},
},
`gatsby-plugin-styled-components`,
{
resolve: `gatsby-plugin-mdx`,
options: {
// Apply gatsby-mdx to both .mdx and .md files
extensions: [".mdx", ".md"],
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `blog`,
path: `${__dirname}/src/pages/blog`,
},
},
`gatsby-transformer-remark`,
// this (optional) plugin enables Progressive Web App + Offline functionality
// To learn more, visit: https://gatsby.dev/offline
{
resolve: `gatsby-plugin-offline`,
options: {
precachePages: [`/*`],
},
},
],
}