Next14 파비콘 안나옴 안나올때 변경하기 favicon 기존 favicon.ico를icon.ico로 이름 변경 후app 디렉터리에 넣어주면 적용됨 참고: https://github.com/vercel/next.js/discussions/50704#discussioncomment-8447407 NextJS 2024.07.24
[NextJS] NEXT 13버전 이미지 태그 외부이미지 불러오는방법 최상단 루트경로에있는 next.config.js 파일에 const nextConfig = { images:{ remotePatterns:[ { protocol:'https', hostname:'**', }, { protocol:'http', hostname:'**' } ] } } module.exports = nextConfig 이렇게 추가해주면 된다. NextJS 2023.06.29