File tree Expand file tree Collapse file tree 4 files changed +2486
-787
lines changed
Expand file tree Collapse file tree 4 files changed +2486
-787
lines changed Original file line number Diff line number Diff line change @@ -840,14 +840,39 @@ const config = {
840840 editUrl :
841841 "https://github.com/bitquery/streaming-data-platform-docs/tree/main" ,
842842 } ,
843- theme : {
844- customCss : require . resolve ( "./src/css/custom.css" ) ,
845- } ,
846843 sitemap : {
847844 changefreq : "daily" ,
848845 priority : 1 ,
849846 ignorePatterns : [ "/docs/graphql-reference/**" ] ,
850847 filename : "sitemap.xml" ,
848+ createSitemapItems : async ( {
849+ siteConfig,
850+ routes,
851+ defaultCreateSitemapItems,
852+ } ) => {
853+ const defaultItems = await defaultCreateSitemapItems ( {
854+ siteConfig,
855+ routes,
856+ } ) ;
857+
858+ const customItems = [
859+ {
860+ url : "https://docs.bitquery.io/pumpfun-token-sniffer" ,
861+ changefreq : "daily" ,
862+ priority : 1 ,
863+ } ,
864+ {
865+ url : "https://docs.bitquery.io/crypto-reward-tax-calculator" ,
866+ changefreq : "daily" ,
867+ priority : 1 ,
868+ } ,
869+ ] ;
870+
871+ return [ ...defaultItems , ...customItems ] ;
872+ } ,
873+ } ,
874+ theme : {
875+ customCss : require . resolve ( "./src/css/custom.css" ) ,
851876 } ,
852877 gtag : {
853878 trackingID : "G-ZWB80TDH9J" ,
You can’t perform that action at this time.
0 commit comments