[] push 수정
All checks were successful
JJ_Back/pipeline/head This commit looks good

This commit is contained in:
김선규 2024-08-20 14:48:02 +09:00
parent b43643ee16
commit 21762a2d27

View File

@ -4,7 +4,8 @@ import { bundleID, apnKey, apnKeyID, apnTeamID } from '../private/config.js';
// APNs 옵션 설정
const options = {
token: {
key: `../private/${apnKey}`, // 다운로드한 .p8 파일 경로
// key: `../private/${apnKey}`, // 다운로드한 .p8 파일 경로
key: path.join(__dirname, '../private', apnKey), // 절대 경로로 변경
keyId: apnKeyID, // Apple Developer Console에서 얻은 키 ID
teamId: apnTeamID, // Apple Developer Console에서 얻은 팀 ID
},