From 2d79f5706887241b393909af1ac999177192b712 Mon Sep 17 00:00:00 2001 From: Jung Seonghun <80201773+seonghun-dev@users.noreply.github.com> Date: Sun, 10 Sep 2023 20:06:57 +0900 Subject: [PATCH] :bug: fix: fix docs broken link (#335) --- docs/docusaurus.config.js | 2 +- docs/src/components/HomepageFeatures/index.tsx | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/docusaurus.config.js b/docs/docusaurus.config.js index 80398c25..192bf1b5 100644 --- a/docs/docusaurus.config.js +++ b/docs/docusaurus.config.js @@ -110,7 +110,7 @@ const config = { ], }, ], - copyright: `Copyright © ${new Date().getFullYear()} My Project, Inc. Built with Docusaurus.`, + copyright: `Copyright © ${new Date().getFullYear()} StreetDrop.`, }, prism: { theme: lightCodeTheme, diff --git a/docs/src/components/HomepageFeatures/index.tsx b/docs/src/components/HomepageFeatures/index.tsx index dc5e36ca..be5484d7 100644 --- a/docs/src/components/HomepageFeatures/index.tsx +++ b/docs/src/components/HomepageFeatures/index.tsx @@ -13,32 +13,32 @@ const callouts: Callout[] = [ { title: "비즈니스", text: "유저 행동 로깅과 어드민 페이지를 통해, 사용자의 행동을 분석하고, 통계를 내며 서비스를 개선해나가고 있습니다.", - link: "/street-drop-server/docs/intro", + link: "/docs/intro", }, { title: "모니터링", text: "프로메테우스 및 그라파나를 통해 서비스의 상태 모니터링과 500대 에러 Slack 알림, 슬로우 쿼리 모니터링 등을 통해서, 서비스의 안정성을 높이고 있습니다.", - link: "/street-drop-server/docs/intro", + link: "/docs/intro", }, { title: "설계", text: "API 서버, Admin 서버, Batch 서버, 알림 서버 등을 분리하여, 서비스의 안정성과 확장성을 높이고 있습니다.", - link: "/street-drop-server/docs/intro", + link: "/docs/software-design-description/Intrduction", }, { title: "문서화", text: "Swagger를 통해 API 문서를 자동화하고 있습니다.", - link: "/street-drop-server/docs/intro", + link: "https://test-api.street-drop.com/swagger", }, { title: "로그", text: "ELK를 통해 서비스의 로그를 수집하고 있습니다.", - link: "/street-drop-server/docs/intro", + link: "/docs/intro", }, { title: "성능", text: "JMeter를 통해 서비스의 성능을 측정하고 있습니다.", - link: "/street-drop-server/docs/intro", + link: "docs/software-requirement-specification/preformance-requirements", }, ];