yarn build
-
[parcel 5] typography js, build프로젝트/[parcel]parcel-experiments 2018. 7. 18. 16:44
typography Js자바스트립트와 함께하는 css typopgraphy자동으로 구글 폰트를 연결해주는 등의 기능이 있다. 먼저 설치해주자yarn add typography typography.js 파일 생성import Typography from "typography"; const typography = new Typography({ baseFontSize: "18px", baseLineHeight: 1.666, googleFonts: [ { name: "Montserrat", styles: ["700"] }, { name: "Open Sans", styles: ["400"] } ], headerFontFamily: ["Montserrat", "Helvetica Neue", "sans-serif"],..
-
[movie_app_8] gh-pages로 배포하기프로젝트/[react]movie_app 2018. 4. 4. 02:22
github에서 제공하는 gh-pages로 무료 호스팅 터미널에서 yarn build 하고 시키는대로 하면 된당! package.json에 "homepage" : "http://myname.github.io/myapp", 추가하고 다시 yarn build "scripts": { "start": "react-scripts start", "build": "react-scripts build", "test": "react-scripts test --env=jsdom", "eject": "react-scripts eject", "predeploy": "npm run build", "deploy": "gh-pages -d build" } 스크립트 추가하고 yarn run deploy 하면 링크가 나온다! 나의 링..