환경
- react 17.0.2
- moment-timezone 0.5.34
소스
import moment from 'moment-timezone'; // tz 를 사용하려면 이걸로 import 해야 함.
// 기본 timezone 지정
const DEFAULT_TIMEZONE = 'Asia/Seoul';
// const DEFAULT_TIMEZONE = 'America/New_York';
// 날짜 기간 검색시 기본 기간
export const DEFAULT_SEARCH_PERIOD_DAYS = 7;
const cur = moment.tz(new Date(), DEFAULT_TIMEZONE);
const start = cur.clone().add((-1 * DEFAULT_SEARCH_PERIOD_DAYS), 'days'); // 조회 시작일
const end = cur.clone(); // 조회 종료일