Files
tldr/pages.zh/common/gatsby.md

24 lines
467 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# gatsby
> React的静态网站生成器。
> 更多信息:<https://gatsbyjs.com>。
- 创建一个新网站:
`gatsby new {{site_name}}`
- 使用Gatsby的“启动器”创建一个新网站
`gatsby new {{site_name}} {{url_of_starter_github_repo}}`
- 启动一个支持热重载的本地开发服务器:
`gatsby develop`
- 执行生产构建并生成静态HTML
`gatsby build`
- 启动一个本地服务器以提供生产构建:
`gatsby serve`