Skip to content

Commit

Permalink
fix paths to be accurate
Browse files Browse the repository at this point in the history
  • Loading branch information
GrahamSH-LLK committed Sep 30, 2024
1 parent 07da3cd commit 703e2e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/routes/sitemap.xml/+server.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export async function GET({ fetch, setHeaders }) {
`;
for (let rule of Object.keys(year.rules)) {
rulesStr += `<url>
<loc>${site}/${year.year}/${rule}</loc>
<loc>${site}/${year.year}/rule/${rule}</loc>
<priority>0.6</priority>
<changefreq>monthly</changefreq>
</url>
Expand Down

0 comments on commit 703e2e7

Please sign in to comment.