diff --git a/docusaurus.config.js b/docusaurus.config.js index 6066e1816..054ec3192 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -65,6 +65,7 @@ const config = { logo: { alt: 'Defang Logo', src: '/img/defang-logo.svg', + href: 'https://defang.io/', }, items: [ { diff --git a/src/pages/index.tsx b/src/pages/index.tsx index 5500e44d5..5419eaec5 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -3,7 +3,7 @@ import { useEffect } from 'react'; export default function Home() { useEffect(() => { - window.location.href = 'https://defang.io/'; + window.location.href = '/docs'; }, []); return null;