Skip to content

Commit

Permalink
feat :: 배포설정
Browse files Browse the repository at this point in the history
  • Loading branch information
KANGYONGSU23 committed Oct 2, 2023
1 parent d4ebace commit fa73664
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
4 changes: 1 addition & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,4 @@ yarn-error.log*
# typescript
*.tsbuildinfo
next-env.d.ts
.env*

.nvmrc
.env*
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
18.12.1
7 changes: 5 additions & 2 deletions src/components/common/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,11 @@ function Header() {
className="rounded-full bg-[#D9D9D9]"
width={28}
height={28}
src={`${process.env.NEXT_PUBLIC_IMAGE_URL}/${
profile.data?.data.profile_image_url || ""
src={`${
profile.data?.data.profile_image_url &&
process.env.NEXT_PUBLIC_IMAGE_URL +
"/" +
profile.data.data.profile_image_url
}`}
alt="프로필사진"
/>
Expand Down

0 comments on commit fa73664

Please sign in to comment.