Skip to content

Commit

Permalink
fix: use fullyqualified url for rss feed to fix checking url failure
Browse files Browse the repository at this point in the history
  • Loading branch information
spaenleh committed Feb 5, 2025
1 parent 68442db commit e5b606b
Showing 1 changed file with 3 additions and 12 deletions.
15 changes: 3 additions & 12 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ const config = {
return undefined;
},
blogTitle: "News and Updates from the Graasp Team",
blogSidebarCount: "ALL",
},
theme: {
customCss: require.resolve("./src/css/custom.css"),
Expand Down Expand Up @@ -104,7 +105,7 @@ const config = {
},
{ to: "/blog", label: "Blog", position: "left" },
{
href: `${process.env.BASE ?? "/"}blog/rss.xml`,
href: "https://graasp.github.io/docs/blog/rss.xml",
position: "right",
label: "RSS",
},
Expand Down Expand Up @@ -217,17 +218,7 @@ const config = {
}),
],
],
headTags: [
// {
// tagName: "link",
// attributes: {
// rel: "preload",
// href: "/fonts/Nunito.ttf",
// as: "font",
// crossorigin: "anonymous",
// },
// },
],
headTags: [],
};

module.exports = config;

0 comments on commit e5b606b

Please sign in to comment.