Skip to content

Commit

Permalink
remove link to broken rss feed
Browse files Browse the repository at this point in the history
  • Loading branch information
rnewstead1 committed Aug 23, 2023
1 parent 7bbdde5 commit f6483e9
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 219 deletions.
51 changes: 0 additions & 51 deletions gatsby-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,56 +57,5 @@ module.exports = {
},
'gatsby-plugin-react-helmet',
'gatsby-transformer-sharp',
{
resolve: 'gatsby-plugin-feed',
options: {
query: `
{
site {
siteMetadata {
title
description
siteUrl
site_url: siteUrl
}
}
}
`,
feeds: [
{
serialize: ({ query: { site, allMarkdownRemark } }) =>
allMarkdownRemark.edges.map((edge) => ({
...edge.node.frontmatter,
description: edge.node.excerpt,
date: edge.node.frontmatter.date,
url: site.siteMetadata.siteUrl + edge.node.frontmatter.path,
guid: site.siteMetadata.siteUrl + edge.node.frontmatter.path,
custom_elements: [{ 'content:encoded': edge.node.html }],
})),
query: `
{
allMarkdownRemark(
sort: { order: DESC, fields: [frontmatter___date] },
) {
edges {
node {
excerpt
html
frontmatter {
title
date
path
}
}
}
}
}
`,
output: '/rss.xml',
title: 'Powderach.com RSS Feed',
},
],
},
},
],
};
167 changes: 0 additions & 167 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
"dependencies": {
"gatsby": "^2.21.33",
"gatsby-image": "^2.4.3",
"gatsby-plugin-feed": "^2.5.3",
"gatsby-plugin-manifest": "^2.4.3",
"gatsby-plugin-offline": "^3.2.2",
"gatsby-plugin-react-helmet": "^3.3.1",
Expand Down

0 comments on commit f6483e9

Please sign in to comment.