Next.js 빌드에서 Google Fonts 타임아웃 해결, next/font/local과 @fontsource 적용

·
• TroubleShooting
배포 워크플로에서 빌드가 갑자기 실패하기 시작했다.FetchError: request to https://fonts.gstatic.com/s/poppins/v24/pxiByp8kv8JHgFVrLDz8Z11lFd2JQEl8qw.woff2 failed type: 'system', errno: 'ETIMEDOUT', code: 'ETIMEDOUT'Failed to compile.src/app/layout.tsx`next/font` error:Failed to fetch `Poppins` from Google Fonts.`ETIMEDOUT`는 파일이 없다는 뜻이 아니라 연결 자체가 시간 안에 끝나지 않았다는 뜻이다. 처음에는 빌드 시 Google Fonts에 한 번에 너무 많은 폰트 파일을 요청하면서 타임..