Created
November 25, 2020 23:05
-
-
Save kenakingkong/c41f3c755828ca61248f79ea6fb54c0d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
siteMetadata : {}, | |
plugins: [ | |
`gatsby-plugin-react-helmet`, | |
`gatsby-plugin-fontawesome-css`, | |
`gatsby-plugin-sass`, | |
{ | |
resolve: 'gatsby-plugin-web-font-loader', | |
options: { | |
google: { | |
families: ['Bowlby One', 'Noto Serif'] | |
} | |
} | |
}, | |
{ | |
resolve: 'gatsby-medium-rss-feed', | |
options: { | |
nodeType: 'sourceNodes', | |
name: 'MediumFeed', | |
userName: '<medium username>' | |
} | |
}, | |
{ | |
resolve: `gatsby-plugin-s3`, | |
options: { | |
bucketName: '<bucket-name>', | |
region: '<region>' | |
}, | |
}, | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment