1. 커서에서 granite.config.ts 파일 확인 수정전 brand: { displayName: '디지털 목탁', primaryColor: '#326BE8', icon: '', // 여기가 비어있음!
}, 여기가 비어있으니, 아무리 빌드를 해도 토스 시스템이 로고를 찾을 수 없었던 것 2.granite.config.ts 파일 코드 수정 granite.config.ts 파일의 내용을 아래 코드로 전부 덮어쓰기 했어요. (이때 토스에 등록했던 로고 주소 필요!)
import { defineConfig } from '@apps-in-toss/web-framework/config'; export default defineConfig({ appName: 'digital-moktak', brand: { displayName: '디지털 목탁', primaryColor: '#326BE8', // 여기에 로고 주소를 정확히 넣었습니다! icon: "여기에 토스에 등록한 로고 주소 입력" ...