Created
June 17, 2022 06:44
-
-
Save djmin43/0f9974c6e187edba2870528da5623805 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import "../styles/globals.css"; | |
import type { AppProps } from "next/app"; | |
import Script from "next/script"; | |
function MyApp({ Component, pageProps }: AppProps) { | |
return ( | |
<> | |
<Script | |
src="//dapi.kakao.com/v2/maps/sdk.js?appkey=6887e18eea343d9ecb3cc5e964acd13b&libraries=services,clusterer&autoload=false" | |
strategy="beforeInteractive" | |
></Script> | |
<Component {...pageProps} /> | |
</> | |
); | |
} | |
export default MyApp; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment