환경Spring Framework요구사항서버에 있는 .min.js와 css와 images 폴더를 zip 파일로 다운로드프론트 1. html 영역hahaApi 다운로드 2. javascript 영역function downloadAPI(apiName){ // 컨트롤러 경로 var url = `/apiDownload?apiName=${apiName}`; // 새로운 엘리먼트 생성 var link = document.createElement("a"); // 다운로드할 파일의 URL 설정 link.href = url; // 다운로드할 파일의 이름 설정 link.download = url.substring(url.lastIndexOf("/") + 1); // body에 추가 d..