1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 10:02:10 +02:00
tldr/pages/common/gatsby.md
Sebastiaan Speck 9d96b14730
gatsby: fix documentation link (#13949)
* gatsby: fix documentation link

* Update gatsby.md

---------

Co-authored-by: Wiktor Perskawiec <git@spageektti.cc>
2024-10-03 11:21:00 +02:00

461 B

gatsby

Static site generator for React. More information: https://gatsbyjs.com.

  • 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