main 폴더에 있는 index.js 파일에서
윗부분을 이렇게 수정하시면
1 hour ago라고 표기 되어있던 것이
1시간 전이라고 표기됩니다.
필요하실 것 같아서 적었습니다.
import React from 'react';
import './index.css';
import axios from 'axios';
import {Link} from 'react-router-dom';
import * as dayjs from 'dayjs';
import relativeTime from 'dayjs/plugin/relativeTime';
import 'dayjs/locale/ko';
dayjs.extend(relativeTime);
dayjs.locale('ko');
import 'dayjs/locale/ko';
와
dayjs.locale('ko');
를 넣어주시면 됩니다 ㅎㅎ