Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,25 @@ const config: Config = {
googleTagManager: {
containerId: "GTM-M2JLH37",
},
sitemap: {
// Files under static/ bypass the Docusaurus build, so pages served
// from there never appear in the generated sitemap. /launch/usdt0 is
// a permanent page and was invisible to crawlers without this.
createSitemapItems: async ({
defaultCreateSitemapItems,
...rest
}) => {
const items = await defaultCreateSitemapItems(rest);
return [
...items,
{
url: `${rest.siteConfig.url}/launch/usdt0`,
changefreq: "weekly",
priority: 0.5
Comment on lines +169 to +171
},
];
},
},
} satisfies Preset.Options,
],
],
Expand Down
3 changes: 3 additions & 0 deletions static/launch/usdt0.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,14 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>USDT0 on Stellar</title>
<script type="application/ld+json">{"@context":"https://schema.org","@type":"TechArticle","headline":"USDT0 on Stellar","description":"A guide to USDT0 on Stellar: how it arrives, what it unlocks, which partners support it, and how to integrate.","url":"https://developers.stellar.org/launch/usdt0","datePublished":"2026-09-01","inLanguage":"en","about":{"@type":"Thing","name":"USDT0 on Stellar Network"},"publisher":{"@type":"Organization","name":"Stellar Development Foundation","url":"https://stellar.org"}}</script>
<meta name="description" content="USDT0 is available on the Stellar network. How it arrives, what it unlocks, the contract addresses, and what to check before you build.">
<meta property="og:type" content="article">
<meta property="og:title" content="USDT0 on Stellar">
<meta property="og:description" content="USDT0 is available on the Stellar network. How it arrives, what it unlocks, the contract addresses, and what to check before you build.">
<meta name="twitter:card" content="summary_large_image">
<meta property="og:url" content="https://developers.stellar.org/launch/usdt0">
<link rel="canonical" href="https://developers.stellar.org/launch/usdt0">
<meta property="og:image" content="https://developers.stellar.org/assets/launch/usdt0-og.png">
<meta property="og:image:width" content="2400">
<meta property="og:image:height" content="1260">
Expand Down
Loading