두 함수의 선택 기준

export async function getStaticProps(context){
	const meetupId = context.params.meetupId;
	
	return {
		props : {
			mettupData : {
					image : "url/asd/123/zxsdfsdfsf.pdf",
					title : "헬로우 맨",
					address : "Some Street 5, Some city",
					description : "This is a first meetup",
					id : meetupId
			}
		}
	}
}

GetStaticPaths

GetStaticPaths는 왜 필요한가?