From 92f279e25fc85ebbb181a16d4b3a2efc8fa13408 Mon Sep 17 00:00:00 2001 From: kkigomi Date: Wed, 14 Jan 2026 15:29:31 +0900 Subject: [PATCH 1/2] Update sitemap location in deploy workflow --- .github/workflows/deploy-vitepress.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy-vitepress.yml b/.github/workflows/deploy-vitepress.yml index 064e1ec..c8bc1bb 100644 --- a/.github/workflows/deploy-vitepress.yml +++ b/.github/workflows/deploy-vitepress.yml @@ -75,5 +75,5 @@ jobs: - name: IndexNow Action uses: bojieyang/indexnow-action@v2 with: - sitemap-location: 'https://damoang-users.github.io/rx-da_reaction/sitemap.xml' + sitemap-location: 'https://rhymix-guide.github.io/module-da_reaction/sitemap.xml' key: ${{ secrets.INDEXNOW_KEY }} From a84141a7226b0740f9c43ebf63d5e8092b056ea0 Mon Sep 17 00:00:00 2001 From: kkigomi Date: Wed, 14 Jan 2026 15:31:35 +0900 Subject: [PATCH 2/2] Update GitHub links and site hostname in config --- docs/.vitepress/config.ts | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/docs/.vitepress/config.ts b/docs/.vitepress/config.ts index df1fa85..25ae269 100644 --- a/docs/.vitepress/config.ts +++ b/docs/.vitepress/config.ts @@ -21,7 +21,6 @@ export default mergeConfig(settings, defineConfig({ themeConfig: { // https://vitepress.dev/reference/default-theme-config siteTitle: 'DA Reaction', - logo: 'https://github.com/damoang-users.png', outline: [2, 4], nav: [ { text: 'Home', link: '/' }, @@ -52,7 +51,7 @@ export default mergeConfig(settings, defineConfig({ externalLinkIcon: true, editLink: { - pattern: 'https://github.com/damoang-users/rx-da_reaction/edit/main/docs/:path', + pattern: 'https://github.com/rhymix-guide/module-da_reaction/edit/main/docs/:path', text: '이 페이지 수정하기' }, @@ -76,12 +75,8 @@ export default mergeConfig(settings, defineConfig({ // 소셜 링크 socialLinks: [ - { icon: 'github', link: 'https://github.com/damoang-users/rx-da_reaction' }, + { icon: 'github', link: 'https://github.com/rhymix-guide/module-da_reaction' }, ], - - footer: { - message: '이 기능은 다모앙 커뮤니티에서 GNU GPL v3 라이선스로 제공합니다.', - }, }, markdown: { @@ -91,6 +86,6 @@ export default mergeConfig(settings, defineConfig({ }, sitemap: { - hostname: 'https://damoang-users.github.io/rx-da_reaction/', + hostname: 'https://rhymix-guide.github.io/module-da_reaction/', }, }))