Skip to content

Commit 6f17c71

Browse files
author
yurim
committed
fix: buildCommand, outputDirectory 위치조정
1 parent 6c4c05f commit 6f17c71

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

fundamentals/today-i-learned/src/components/features/auth/UnauthenticatedState.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export function UnauthenticatedState() {
77

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

1212
<Button onClick={login} variant="primary" size="lg" className={button}>
1313
로그인하기

vercel.json

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
{
2+
"buildCommand": "yarn build",
3+
"outputDirectory": "dist",
24
"redirects": [
35
{
46
"source": "/",
@@ -9,27 +11,27 @@
911
"rewrites": [
1012
{
1113
"source": "/code-quality/:path*",
12-
"destination": "/dist/fundamentals/code-quality/:path*"
14+
"destination": "/fundamentals/code-quality/:path*"
1315
},
1416
{
1517
"source": "/fundamentals/code-quality/:path*",
16-
"destination": "/dist/fundamentals/code-quality/:path*"
18+
"destination": "/fundamentals/code-quality/:path*"
1719
},
1820
{
1921
"source": "/fundamentals/bundling/:path*",
20-
"destination": "/dist/fundamentals/bundling/:path*"
22+
"destination": "/fundamentals/bundling/:path*"
2123
},
2224
{
2325
"source": "/today-i-learned/assets/:path*",
24-
"destination": "/dist/fundamentals/today-i-learned/assets/:path*"
26+
"destination": "/fundamentals/today-i-learned/assets/:path*"
2527
},
2628
{
2729
"source": "/today-i-learned/:path*",
28-
"destination": "/dist/fundamentals/today-i-learned/index.html"
30+
"destination": "/fundamentals/today-i-learned/index.html"
2931
},
3032
{
3133
"source": "/fundamentals/today-i-learned/:path*",
32-
"destination": "/dist/fundamentals/today-i-learned/:path*"
34+
"destination": "/fundamentals/today-i-learned/:path*"
3335
},
3436
{ "source": "/(.*)", "destination": "/" }
3537
]

0 commit comments

Comments
 (0)