React/React 쇼핑 앱
[REACT] 1_리액트 프로젝트 생성
MINOKUMA
2021. 12. 25. 00:52
반응형
쇼핑 앱 최종결과
React App
ksky216.github.io
프로젝트에 사용할 기본 폴더 생성
C:/dev/react-web
cd react-web/
PWA 프로젝트 (react-shop) 앱 생성
npx create-react-app react-shop --template cra-template-pwa
VSCode로 생성된 react-shop 폴더 열기
src/index.js 수정
기존
serviceWorkerRegistration.unregister();
수정
serviceWorkerRegistration.register();
실행
yarn start
반응형