Skip to content
Snippets Groups Projects
Commit a3cc9537 authored by Julien MARGAIL's avatar Julien MARGAIL
Browse files

fix feed.rss (v0.9.17)

parent 2ed9d4e6
No related branches found
No related tags found
No related merge requests found
......@@ -7,6 +7,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [0.9.17] - 2023-11-20
### Fix
- Feed rss default name to /feed.rss (to match nginx default content-type)
- Feed rss url
## [0.9.16] - 2023-11-13
### Fix
......
......@@ -91,6 +91,7 @@ module.exports = {
title
description
siteUrl
pathPrefix
}
}
}
......@@ -108,10 +109,16 @@ module.exports = {
url:
site.siteMetadata.siteUrl +
"/" +
(site.siteMetadata.pathPrefix ||
"") +
"/news/" +
item.slug,
guid:
site.siteMetadata.siteUrl +
"/" +
(site.siteMetadata.pathPrefix ||
"") +
"/news/" +
item.slug,
category: "news",
}
......@@ -140,7 +147,7 @@ module.exports = {
}
}
`,
output: "/rss.xml",
output: "/feed.rss",
title: "Onegeo Suite Portal RSS Feed",
},
],
......
{
"name": "@onegeo-suite/gatsby-theme-onegeo",
"version": "0.9.16",
"version": "0.9.17",
"main": "index.js",
"types": "index.d.ts",
"author": "NEOGEO",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment