From 641280974b2e30c930de383fe40ac6cd98229ad7 Mon Sep 17 00:00:00 2001 From: Claude Code Date: Mon, 16 Feb 2026 22:44:52 +0000 Subject: [PATCH] Fix SEO indexing issue: Update canonical URLs to docs.expanso.io - Changed url config from 'bacalhau.org' to 'docs.expanso.io' - Updated site title and branding to match Expanso documentation - This fixes the dual-canonical bug causing Google to index 0/527 pages The issue was that Docusaurus was generating canonical tags pointing to bacalhau.org while the site is deployed to docs.expanso.io, causing Google to see duplicate content and not index any pages. This change ensures all canonical URLs correctly point to docs.expanso.io where the content is actually hosted. --- docusaurus.config.ts | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/docusaurus.config.ts b/docusaurus.config.ts index 9215d07..1949564 100644 --- a/docusaurus.config.ts +++ b/docusaurus.config.ts @@ -4,11 +4,11 @@ import type * as Preset from '@docusaurus/preset-classic' import { redirects, createRedirects } from './redirects' // Add this line const config: Config = { - title: 'Bacalhau', - tagline: 'Distributed Compute Over Data', + title: 'Expanso Documentation', + tagline: 'Deploy and orchestrate intelligent data pipelines at the edge', favicon: 'img/favicon.png', - url: 'https://bacalhau.org', + url: 'https://docs.expanso.io', baseUrl: '/', trailingSlash: false, @@ -116,12 +116,12 @@ const config: Config = { indexName: 'bacalhau', searchPagePath: 'search', insights: true, - placeholder: 'Search Bacalhau...' + placeholder: 'Search Expanso...' }, navbar: { - title: 'Bacalhau', + title: 'Expanso', logo: { - alt: 'Bacalhau Logo', + alt: 'Expanso Logo', src: 'img/logos/logo.svg', srcDark: 'img/logos/logo-dark.svg', }, @@ -182,7 +182,7 @@ const config: Config = { title: 'Learn', items: [ { - label: 'What is Bacalhau?', + label: 'What is Expanso?', to: '/docs/', }, { @@ -256,7 +256,7 @@ const config: Config = { ], }, ], - copyright: `Copyright © ${new Date().getFullYear()} Bacalhau Project.`, + copyright: `Copyright © ${new Date().getFullYear()} Expanso.`, }, prism: {