클러스터 background 이미지 변경시

클러스터 background 이미지 변경시 상대경로는 적용되지 않나요 ??
이미지 링크는 적용되는데 ㅠㅠ

new kakao.maps.MarkerClusterer({
map: map,
styles: [
{
fontSize: “0px”,
background: “url(‘https://m/m,png’)”,
// 위와 같은건 되는데 아래는 안됩니다
background: “url(’…/…/assets/image/c.png’)”,
},
],

파일 경로가 올바른지 확인해주세요.
저는 root > image 폴더 > red.png 위치에 있는 파일을
아래와 같이 불러왔고 적용되어 지도에 표시되었습니다.

background: 'url("../image/red.png") no-repeat',