forked from 100DaysOfCloud/100DaysOfCloudFrontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
32 lines (32 loc) · 1.03 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
module.exports = {
siteMetadata: {
title: `100DaysOfCloud`,
description: `Official Website of the #100DaysOfCloud Community Challenge`,
author: `@antonio_lofiego`,
},
plugins: [
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
`gatsby-plugin-postcss`,
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `100DaysOfCloud`,
short_name: `100DOC`,
start_url: `/`,
icon: `static/favicon.ico`, // This path is relative to the root of the site.
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `markdown-pages`,
path: `${__dirname}/src/markdown-pages`,
},
},
`gatsby-transformer-remark`,
// this (optional) plugin enables Progressive Web App + Offline functionality
// To learn more, visit: https://gatsby.dev/offline
// `gatsby-plugin-offline`,
],
};