From 3d3ed359e46d9031cf0aa716e2715b799f9309ce Mon Sep 17 00:00:00 2001 From: NaveOWO <87578512+NaveOWO@users.noreply.github.com> Date: Thu, 4 Jan 2024 00:03:53 +0900 Subject: [PATCH] Deploy website - based on 8fc27a2fa4fdc6d1372047b2f8c60d905fbaac4d --- my-website/docusaurus.config.js | 2 +- my-website/src/pages/index.jsx | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/my-website/docusaurus.config.js b/my-website/docusaurus.config.js index 1f5f33a..538e993 100644 --- a/my-website/docusaurus.config.js +++ b/my-website/docusaurus.config.js @@ -13,7 +13,7 @@ const config = { favicon: "img/favicon.ico", // Set the production url of your site here - url: "https://naveowo.github.io", + url: "https://NaveOWO.github.io", // Set the // pathname under which your site is served // For GitHub pages deployment, it is often '//' baseUrl: "/navrary-CK-util-componenets/", diff --git a/my-website/src/pages/index.jsx b/my-website/src/pages/index.jsx index 3ae2fb1..17ac306 100644 --- a/my-website/src/pages/index.jsx +++ b/my-website/src/pages/index.jsx @@ -4,11 +4,11 @@ import { Redirect } from "@docusaurus/router"; export default function Home() { const isBrowser = useIsBrowser(); - // if (isBrowser) { - return ( - - ); - // } + if (isBrowser) { + return ( + + ); + } return null; }