From 9ff46cc05f0c56e34ae4b485ab3586bb90d66583 Mon Sep 17 00:00:00 2001 From: yurim Date: Sun, 5 Oct 2025 17:14:42 +0900 Subject: [PATCH 01/14] =?UTF-8?q?feat:vercel.json=20=ED=8C=8C=EC=9D=BC?= =?UTF-8?q?=EC=97=90=EC=84=9C=20=EB=A6=AC=EB=8B=A4=EC=9D=B4=EB=A0=89?= =?UTF-8?q?=ED=8A=B8=20=EC=A0=9C=EA=B1=B0=20=EB=B0=8F=20bundling,=20code-q?= =?UTF-8?q?uality=20=EA=B4=80=EB=A0=A8=20vercel.json=20=ED=8C=8C=EC=9D=BC?= =?UTF-8?q?=20=EC=82=AD=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- fundamentals/bundling/vercel.json | 8 -------- fundamentals/code-quality/vercel.json | 8 -------- .../components/features/challenge/MonthlyChallenge.tsx | 5 ----- vercel.json | 8 -------- 4 files changed, 29 deletions(-) delete mode 100644 fundamentals/bundling/vercel.json delete mode 100644 fundamentals/code-quality/vercel.json diff --git a/fundamentals/bundling/vercel.json b/fundamentals/bundling/vercel.json deleted file mode 100644 index 1323cdac..00000000 --- a/fundamentals/bundling/vercel.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "rewrites": [ - { - "source": "/(.*)", - "destination": "/index.html" - } - ] -} diff --git a/fundamentals/code-quality/vercel.json b/fundamentals/code-quality/vercel.json deleted file mode 100644 index 1323cdac..00000000 --- a/fundamentals/code-quality/vercel.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "rewrites": [ - { - "source": "/(.*)", - "destination": "/index.html" - } - ] -} diff --git a/fundamentals/today-i-learned/src/components/features/challenge/MonthlyChallenge.tsx b/fundamentals/today-i-learned/src/components/features/challenge/MonthlyChallenge.tsx index abccbc2b..fea8b775 100644 --- a/fundamentals/today-i-learned/src/components/features/challenge/MonthlyChallenge.tsx +++ b/fundamentals/today-i-learned/src/components/features/challenge/MonthlyChallenge.tsx @@ -313,8 +313,3 @@ const skeletonDay = css({ borderRadius: "50%", animation: "pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite" }); - -const emptyCell = css({ - width: "3.5rem", - height: "3.5rem" -}); diff --git a/vercel.json b/vercel.json index 0fb9244f..1fe49334 100644 --- a/vercel.json +++ b/vercel.json @@ -1,13 +1,5 @@ { - "redirects": [ - { - "source": "/", - "destination": "/code-quality/", - "permanent": true - } - ], "rewrites": [ - { "source": "/(.*)", "destination": "/" }, { "source": "/fundamentals/code-quality/:path*", "destination": "/dist/fundamentals/code-quality/:path*" From 5a8e2a7ff9d1a921045690d09fdd2efd96e7c3d0 Mon Sep 17 00:00:00 2001 From: yurim Date: Sun, 5 Oct 2025 17:19:16 +0900 Subject: [PATCH 02/14] =?UTF-8?q?fix:=20vercel.json=EC=97=90=EC=84=9C=20?= =?UTF-8?q?=EB=A6=AC=EB=8B=A4=EC=9D=B4=EB=A0=89=ED=8A=B8=20=EA=B2=BD?= =?UTF-8?q?=EB=A1=9C=EB=A5=BC=20=EC=88=98=EC=A0=95=ED=95=98=EC=97=AC=20ind?= =?UTF-8?q?ex.html=EB=A1=9C=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- vercel.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vercel.json b/vercel.json index 1fe49334..426ef786 100644 --- a/vercel.json +++ b/vercel.json @@ -10,7 +10,7 @@ }, { "source": "/fundamentals/today-i-learned/:path*", - "destination": "/dist/fundamentals/today-i-learned/:path*" + "destination": "/dist/fundamentals/today-i-learned/index.html" }, { "source": "/code-quality/:path*", From 32db468b877b249af9b27746bf591fd941c9b229 Mon Sep 17 00:00:00 2001 From: yurim Date: Sun, 5 Oct 2025 17:21:15 +0900 Subject: [PATCH 03/14] =?UTF-8?q?fix:=20vercel.json=EC=97=90=EC=84=9C=20?= =?UTF-8?q?=EB=A6=AC=EB=8B=A4=EC=9D=B4=EB=A0=89=ED=8A=B8=20=EA=B2=BD?= =?UTF-8?q?=EB=A1=9C=EB=A5=BC=20=EC=A0=95=EA=B7=9C=20=ED=91=9C=ED=98=84?= =?UTF-8?q?=EC=8B=9D=EC=9C=BC=EB=A1=9C=20=EC=88=98=EC=A0=95=ED=95=98?= =?UTF-8?q?=EC=97=AC=20=EB=8D=94=20=EC=9C=A0=EC=97=B0=ED=95=9C=20=EB=A7=A4?= =?UTF-8?q?=EC=B9=AD=20=EA=B5=AC=ED=98=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- vercel.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vercel.json b/vercel.json index 426ef786..99a708f7 100644 --- a/vercel.json +++ b/vercel.json @@ -9,7 +9,7 @@ "destination": "/dist/fundamentals/bundling/:path*" }, { - "source": "/fundamentals/today-i-learned/:path*", + "source": "/fundamentals/today-i-learned/(.*)", "destination": "/dist/fundamentals/today-i-learned/index.html" }, { From 02a27980a1b777dbc00d9c791f890596cb1912e5 Mon Sep 17 00:00:00 2001 From: yurim Date: Sun, 5 Oct 2025 17:26:44 +0900 Subject: [PATCH 04/14] =?UTF-8?q?fix:=20vercel.json=EC=97=90=EC=84=9C=20?= =?UTF-8?q?=EB=A6=AC=EB=8B=A4=EC=9D=B4=EB=A0=89=ED=8A=B8=20=EA=B2=BD?= =?UTF-8?q?=EB=A1=9C=EB=A5=BC=20=EC=A0=95=EA=B7=9C=20=ED=91=9C=ED=98=84?= =?UTF-8?q?=EC=8B=9D=EC=9C=BC=EB=A1=9C=20=EC=88=98=EC=A0=95=ED=95=98?= =?UTF-8?q?=EC=97=AC=20=EB=8D=94=20=EC=9C=A0=EC=97=B0=ED=95=9C=20=EB=A7=A4?= =?UTF-8?q?=EC=B9=AD=20=EA=B5=AC=ED=98=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- vercel.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vercel.json b/vercel.json index 99a708f7..426ef786 100644 --- a/vercel.json +++ b/vercel.json @@ -9,7 +9,7 @@ "destination": "/dist/fundamentals/bundling/:path*" }, { - "source": "/fundamentals/today-i-learned/(.*)", + "source": "/fundamentals/today-i-learned/:path*", "destination": "/dist/fundamentals/today-i-learned/index.html" }, { From 6ae065a11a8f1f114dc1a443022b4e7bd72226cb Mon Sep 17 00:00:00 2001 From: yurim Date: Sun, 5 Oct 2025 17:30:42 +0900 Subject: [PATCH 05/14] =?UTF-8?q?feat:=20redirects=20=EC=82=B4=EB=A6=AC?= =?UTF-8?q?=EA=B8=B0,=20=ED=85=8C=EC=8A=A4=ED=8A=B8=EC=9A=A9=EC=9C=BC?= =?UTF-8?q?=EB=A1=9C=20=ED=85=8D=EC=8A=A4=ED=8A=B8=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/components/features/auth/UnauthenticatedState.tsx | 2 +- vercel.json | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/fundamentals/today-i-learned/src/components/features/auth/UnauthenticatedState.tsx b/fundamentals/today-i-learned/src/components/features/auth/UnauthenticatedState.tsx index 4a65bdb2..dc6dff59 100644 --- a/fundamentals/today-i-learned/src/components/features/auth/UnauthenticatedState.tsx +++ b/fundamentals/today-i-learned/src/components/features/auth/UnauthenticatedState.tsx @@ -7,7 +7,7 @@ export function UnauthenticatedState() { return (
- 오늘 배운 내용을 기록하려면 로그인해 주세요 + 오늘 배운 내용을 기록하려면 로그인 해주세요