Skip to content

Commit

Permalink
fix: conflict reslove 및 컨벤션에 맞춘 전역상태 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
xilucks committed Jul 22, 2024
1 parent 6cc56b3 commit 6c88d41
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/(playground)/playground/map/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ export default function KaKaoMapPageLayout({
<Script
strategy="beforeInteractive"
type="text/javascript"
src={`${process.env.NEXT_PUBLIC_DAUMCDN_POSTOCDE_URL}`}
src={`${process.env.DAUMCDN_POSTOCDE_URL}`}
/>
<Script
strategy="beforeInteractive"
type="text/javascript"
src={`${process.env.NEXT_PUBLIC_KAKAOMAP_BASE_URL}?appkey=${process.env.NEXT_PUBLIC_KAKAO_MAP_API_KEY}&libraries=services&autoload=false`}
src={`${process.env.KAKAO_MAP_BASE_URL}?appkey=${process.env.KAKAO_MAP_API_KEY}&libraries=services&autoload=false`}
/>
{children}
</>
Expand Down

0 comments on commit 6c88d41

Please sign in to comment.