Skip to content

ICE-LIFE/ICE-LIFE-Frontend

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

48 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

정통마켓 프론트엔드 리포지토리입니다.

개발 관련 참고사항

  1. root위치에 jsconfig.json파일 추가

    • src 폴더를 root 디렉터리 위치로 잡고 경로를 작성하게끔 하기 위해

      예제) import { Home, Auth } from "./pages"; 대신 import { Home, Auth } from "pages"; 와 같이 쓸 수 있음.

      잘 보면 상대경로인 ./가 사라진 것을 알 수 있다!

      기준 경로가 src이므로, 절대경로가 src/page 라면 src/ 부분을 제외하고 pages만 써주면 됨!

  2. 폰트는 구글 폰트를 이용하자

    • https://fonts.google.com/ 에서 원하는 폰트를 골라 index.css에서 @import url("링크주소"); 와 같이 써주면 된다.