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

25 lines
461 B
Markdown
Raw Normal View History

2017-12-15 22:48:19 +07:00
# gatsby
> Static site generator for React.
> More information: <https://gatsbyjs.com>.
2017-12-15 22:48:19 +07:00
- Create a new site:
`gatsby new {{site_name}}`
- Create a new site with a Gatsby 'starter':
`gatsby new {{site_name}} {{url_of_starter_github_repo}}`
- Start a live-reloading local development server:
`gatsby develop`
- Perform a production build and generate static HTML:
`gatsby build`
- Start a local server which serves the production build:
`gatsby serve`