doggo
1.0.0
버치라는 멋진 개를위한 디지털 이력서.
npm i
종속성을 설치합니다build
폴더에 위치한 개발 준비 빌드를 만들기 위해 npm run build
npm run start
하고 build
폴더 내에서 변경 사항을 확인합니다.npm run deploy
dist
Folder에 위치한 프로덕션 준비 빌드를 생성합니다. ├── src
│ ├── index.html # Static HTML file
│ ├── img/ # Contains all images used on the website
│ ├── js/ # Contains all Javascript/Component files to be compiled
│ │ └──scripts.js # Javascript entry point (ES6 compatible via Babel)
│ └── scss/ # Contains all styling to be compiled
│ └──style.scss # Sass entry point
|
└── build # Generated build folder created via npm run build
└── dist # Generated dist folder created via npm run deploy