docs: canonical and Open Graph URLs use the wrong host
Nobody has claimed this yet.
- Dominant language
- TypeScript
- Stars
- 25
- Forks
- 12
- Avg merge
- 1m
- Merged PRs (30d)
- 1
Description
What happened
The deployed documentation site publishes canonical and Open Graph URLs on the Termix product host instead of the documentation host.
Evidence
docusaurus.config.ts sets:
url: 'https://termix.site',
baseUrl: '/',
However, the documentation is deployed at https://docs.termix.site. The rendered installation page currently contains:
<meta property="og:url" content="https://termix.site/install">
<link rel="canonical" href="https://termix.site/install">
The page itself is served from https://docs.termix.site/install, so these metadata URLs identify a different host and may cause incorrect canonicalization and link previews.
Expected behavior
The canonical and Open Graph URLs for documentation pages should use https://docs.termix.site.
Suggested fix
Set the Docusaurus url to https://docs.termix.site, rebuild/deploy the site, and verify the generated canonical, og:url, and sitemap URLs on a representative docs page.
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start in docusaurus.config.ts at the url and baseUrl settings. Rebuild or deploy the documentation site, then inspect a representative page such as /install and verify that its canonical, og:url, and sitemap URLs use https://docs.termix.site rather than the product host.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- typescript
- Domain
- documentation
- Issue type
- Bug
- Difficulty
- 1/5
- Estimated time
- 1-3 hours
- Activity status
- Active
- Clarity
- Clearly specified
- Newbie friendliness
- 90/100