[Webpack] Module parse failed: Unexpected character '' (1:2)You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file.
문제 내용: 프로젝트 루트에 있는 엑셀 파일 import가 적용되지 않음 & 엑셀 파일 인식이 제대로 되지 않음 해결 방법: webpack config 에 설정 추가 & 프로젝트 로컬 경로를 입력하여 파일 direct import ExcelRulesUpload.tsx 의 코드는 어땠을까? function logic const downloadExcelTemplate = e => { const link = document.createElement('a') const fileName = 'excel_template_example.xlsx' link.href = fileName document.body.appendChild(link) link.target = '_self' link.download = fileN..