-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathgatsby-config.js
More file actions
42 lines (42 loc) · 895 Bytes
/
gatsby-config.js
File metadata and controls
42 lines (42 loc) · 895 Bytes
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
module.exports = {
siteMetadata: {
siteUrl: "https://www.djunicode.in",
title: "DJ Unicode",
description:
"Official site for Unicode, a student coding club of Dwarkadas J. Sanghvi College of Engineering.",
author: "DJ Unicode",
},
plugins: [
"gatsby-plugin-material-ui",
"gatsby-plugin-sass",
"gatsby-plugin-image",
"gatsby-plugin-react-helmet",
"gatsby-plugin-sitemap",
{
resolve: "gatsby-plugin-manifest",
options: {
name: `DJ Unicode`,
short_name: `Unicode`,
start_url: `/`,
icon: "src/images/unicode-icon.svg",
},
},
"gatsby-plugin-sharp",
"gatsby-transformer-sharp",
{
resolve: "gatsby-source-filesystem",
options: {
name: "images",
path: "./src/images/",
},
__key: "images",
},
`gatsby-transformer-json`,
{
resolve: `gatsby-source-filesystem`,
options: {
path: `./src/data/`,
},
},
],
};