Skip to content

Commit

Permalink
chore(docs): test different sitemap
Browse files Browse the repository at this point in the history
  • Loading branch information
krisantrobus committed Dec 18, 2024
1 parent 8e13c35 commit eeb4306
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/paste-website/src/pages/sitemap.xml.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const getServerSideProps: GetServerSideProps = async ({ res }) => {
const BASE_URL = "https://paste.twilio.design";

// Get a list of all pages currently in the site, must be mdx and not tsx which they all currently are
const uncompiledPaths = await globby(["**/pages/**/*.mdx", "!**/api/**", "!**/pages/404/**"]);
const uncompiledPaths = await globby(["**/pages/**/*.mdx", "!**/api/**", "!**/pages/404/**", "!**/pages/blog/**"]);

const urlPaths = uncompiledPaths.map((path) => {
// Remove `src/pages/`
Expand Down

0 comments on commit eeb4306

Please sign in to comment.