업무하다 찾아보게되서 적어봄.
이건 알지...
console.log(location.href)
// https://120.0.0.1:3030/admin/order/history
근데.. 여기서 포트까지만 출력하는게 뭐였더라!!
let url = new URL(location.href);
let baseUrl = url.origin;
console.log(baseUrl); // http://120.0.0.1:3030 출력
끝.