diff --git a/docusaurus.config.ts b/docusaurus.config.ts index 5bb8b851c..5c1e568e6 100644 --- a/docusaurus.config.ts +++ b/docusaurus.config.ts @@ -144,6 +144,10 @@ const config: Config = { "@docusaurus/plugin-client-redirects", { redirects: [ + { + from: "/client/concepts/bootstrapping", + to: "/sdk_monitoring/", + }, { from: "/client/concepts/bootstrapping", to: "/client/concepts/initialize/#2-bootstrap-initialization", diff --git a/src/theme/NotFound/index.tsx b/src/theme/NotFound/index.tsx new file mode 100644 index 000000000..7a57aef7d --- /dev/null +++ b/src/theme/NotFound/index.tsx @@ -0,0 +1,14 @@ +import React, { useEffect } from 'react'; +import NotFound from '@theme-original/NotFound'; +import type NotFoundType from '@theme/NotFound'; +import type {WrapperProps} from '@docusaurus/types'; + +type Props = WrapperProps; + +export default function NotFoundWrapper(props: Props): JSX.Element { + return ( + <> + + + ); +}