diff --git a/website/docusaurus.config.js b/website/docusaurus.config.js index 8f4368c..21a5021 100644 --- a/website/docusaurus.config.js +++ b/website/docusaurus.config.js @@ -26,7 +26,8 @@ const siteConfig = { baseUrl: '/www.aboutcode.org/', }, dreamhost: { - url: 'https://www.aboutcode.org', + // url: 'https://www.aboutcode.org', + url: 'https://aboutcode.org', baseUrl: '/', }, }; @@ -73,7 +74,9 @@ const config = { /** @type {import('@docusaurus/preset-classic').Options} */ ({ docs: { - sidebarPath: './sidebars.js', + // sidebarPath: './sidebars.js', + // 2026-05-05 15:57:26 (PT) Tuesday. Does this address the link errors? + sidebarPath: require.resolve('./sidebars.js'), // Please change this to your repo. // Remove this to remove the "edit this page" links. // editUrl: @@ -144,27 +147,27 @@ const config = { style: 'dark', links: [ { - html: `My Company`, + html: `AboutCode.org`, }, { - html: ``, + html: ``, }, { - html: ``, + html: ``, }, { - html: ``, + html: ``, }, { - html: ``, + html: ``, }, { - html: ``, + html: ``, }, { label: 'Privacy Policy', to: '/privacy' }, diff --git a/website/static/.htaccess b/website/static/.htaccess new file mode 100644 index 0000000..063036d --- /dev/null +++ b/website/static/.htaccess @@ -0,0 +1,6 @@ +Options -MultiViews +RewriteEngine On +RewriteBase / +RewriteCond %{REQUEST_FILENAME} !-f +RewriteCond %{REQUEST_FILENAME} !-d +RewriteRule . /index.html [L]