Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions fundamentals/bundling/vercel.json

This file was deleted.

8 changes: 0 additions & 8 deletions fundamentals/code-quality/vercel.json

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export function UnauthenticatedState() {

return (
<div className={container}>
<span className={title}>오늘 배운 내용을 기록하려면 로그인해 주세요</span>
<span className={title}>오늘 배운 내용을 기록하려면 로그인 해주세요</span>

<Button onClick={login} variant="primary" size="lg" className={button}>
로그인하기
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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"
});
22 changes: 13 additions & 9 deletions vercel.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"outputDirectory": "./dist/fundamentals",
"redirects": [
{
"source": "/",
Expand All @@ -7,22 +8,25 @@
}
],
"rewrites": [
{ "source": "/(.*)", "destination": "/" },
{
"source": "/fundamentals/code-quality/:path*",
"destination": "/dist/fundamentals/code-quality/:path*"
"source": "/code-quality/:path*",
"destination": "/code-quality/:path*"
},
{
"source": "/fundamentals/bundling/:path*",
"destination": "/dist/fundamentals/bundling/:path*"
"source": "/bundling/:path*",
"destination": "/bundling/:path*"
},
{
"source": "/fundamentals/today-i-learned/:path*",
"destination": "/dist/fundamentals/today-i-learned/:path*"
"source": "/a11y/:path*",
"destination": "/a11y/:path*"
},
{
"source": "/code-quality/:path*",
"destination": "/dist/fundamentals/code-quality/:path*"
"source": "/today-i-learned/:path*",
"destination": "/today-i-learned/index.html"
},
{
"source": "/(.*)",
"destination": "/"
}
]
}