컨텐츠로 건너뛰기

getStaticPaths() function required for dynamic routes.

GetStaticPathsRequired: getStaticPaths() function is required for dynamic routes. Make sure that you export a getStaticPaths function from your dynamic route.

정적 모드에서는 모든 경로가 빌드 시 결정되어야 합니다. 따라서 동적 경로는 생성할 다양한 경로를 반환하는 getStaticPaths 함수를 export해야 합니다.

더 보기: