Skip to content

Latest commit

 

History

History
17 lines (15 loc) · 359 Bytes

README.md

File metadata and controls

17 lines (15 loc) · 359 Bytes

gatsby-source-rss

Usage

Add the following to your gatsby-config.js

module.exports = {
        plugins: [
                {
                        resolve: 'gatsby-source-rss',
                        options: {
                                rssURL: 'https://fancypants.io/rss.xml'
                        }
                },
        ]
}