dayjs에서 현재 위치 기준 말고 UTC 기준으로 사용하려면 utc 플러그인 필요

setup

따로 설치할 필요는 없음

import dayjs from "dayjs";
import utc from "dayjs/plugin/utc";

dayjs.extend(utc);

dayjs().format(); // 2024-09-08T01:57:25+09:00
dayjs().utc().format()); // 2024-09-07T16:57:25Z