-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
32 lines (32 loc) · 951 Bytes
/
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
module.exports = {
siteMetadata:{
title: "Meenhacks",
description: "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam",
logo: "/images/logo.png"
},
plugins:[
`gatsby-plugin-sharp`,
`gatsby-transformer-sharp`,
{
resolve: "gatsby-transformer-remark",
options: {
plugins: [
{
resolve: "gatsby-remark-images",
options: {
maxWidth: 1280
}
}
]
}
},
{
resolve: "gatsby-source-filesystem",
options: {
name: "contents",
path: `${__dirname}/contents/`
}
},
"gatsby-plugin-react-helmet"
]
}