Skip to content

Instantly share code, notes, and snippets.

@kenakingkong
Created November 25, 2020 23:05
Show Gist options
  • Save kenakingkong/c41f3c755828ca61248f79ea6fb54c0d to your computer and use it in GitHub Desktop.
Save kenakingkong/c41f3c755828ca61248f79ea6fb54c0d to your computer and use it in GitHub Desktop.
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