diff --git a/website/src/pages/api.jsx b/website/src/pages/api/index.jsx similarity index 100% rename from website/src/pages/api.jsx rename to website/src/pages/api/index.jsx diff --git a/website/src/pages/api/v3.jsx b/website/src/pages/api/v3.jsx new file mode 100644 index 000000000..7cdd45289 --- /dev/null +++ b/website/src/pages/api/v3.jsx @@ -0,0 +1,23 @@ +import React from "react"; +import Layout from "@theme/Layout"; +import Head from "@docusaurus/Head"; +import BrowserOnly from "@docusaurus/core/lib/client/exports/BrowserOnly"; + +function APIPage() { + return ( + + + + + + {() => { + window.location.pathname = "/developer-docs/api/"; + }} + + + ); +} +export default APIPage;