From daad7f64bb78e17c99c774c7d8b0fb6fc2b89f37 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BA=95=E3=81=AA=E3=81=97=E6=B2=BC=E3=81=AE=E9=AD=94?= =?UTF-8?q?=E5=A5=B3?= Date: Thu, 2 Jul 2026 23:45:05 +0900 Subject: [PATCH 1/2] ci: upgrade upload-pages-artifact to v4 to suppress Node 20 deprecation warning --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index f507484..85ec31c 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -30,7 +30,7 @@ jobs: - name: Build run: bun run build - - uses: actions/upload-pages-artifact@v3 + - uses: actions/upload-pages-artifact@v4 with: path: dist From 889d2d372ba891cbb2e580097f7c76ee221f9f39 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BA=95=E3=81=AA=E3=81=97=E6=B2=BC=E3=81=AE=E9=AD=94?= =?UTF-8?q?=E5=A5=B3?= Date: Thu, 2 Jul 2026 23:48:27 +0900 Subject: [PATCH 2/2] fix: use auto font-smoothing instead of antialiased to fix blurry text on macOS -webkit-font-smoothing: antialiased disables subpixel antialiasing on macOS, causing pixel fonts (DotGothic16) to appear blurry on Retina displays. Changed to auto which uses the OS default rendering. --- src/index.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.css b/src/index.css index 1585fe8..1e1ce6f 100644 --- a/src/index.css +++ b/src/index.css @@ -14,7 +14,7 @@ html, body, #root { body { font-family: 'DotGothic16', sans-serif; font-size: 16px; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; + -webkit-font-smoothing: auto; + -moz-osx-font-smoothing: auto; text-rendering: optimizeLegibility; }