1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.ko/common/gatsby.md

25 lines
540 B
Markdown
Raw Normal View History

# gatsby
> React용 정적 사이트 생성기.
> 더 많은 정보: <https://gatsbyjs.com>.
- 새로운 사이트 생성:
`gatsby new {{사이트_이름}}`
- Gatsby '스타터'를 사용하여 새로운 사이트 생성:
`gatsby new {{사이트_이름}} {{스타터_깃허브_레포_주소}}`
- 라이브 다시 로드하는 로컬 새발 서버를 시작:
`gatsby develop`
- 프로덕션 빌드를 수행하고 정적 HTML을 생성:
`gatsby build`
- 프로덕션 빌드를 제공하는 로컬 서버를 시작:
`gatsby serve`