Excel 워크시트에 이미지 삽입
PiTemplate.ts import ExcelJS from 'exceljs'; import { PiType } from '../types/pi'; import { format } from 'date-fns'; import base64Img from '../../actions/utils/base64Img'; import logoImgURL from '../../assets/images/common/ExcelLogoImg.png'; export default async function piTemplate(piDetail: PiType, language: string) { const download = async (workbook: ExcelJS.Workbook, fileName: string) => { c..