chore(v2): update examples to use alpha73 (#4631)

* regenerate examples on alpha73

* fix init template typo + add missing files
This commit is contained in:
Sébastien Lorber 2021-04-16 14:08:23 +02:00 committed by GitHub
parent 4d49945775
commit c8cf48a355
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
39 changed files with 1968 additions and 2905 deletions

View file

@ -0,0 +1,31 @@
---
sidebar_position: 5
---
# Deploy your site
Docusaurus is a **static-site-generator** (also called **[Jamstack](https://jamstack.org/)**).
It builds your site as simple **static HTML, JavaScript and CSS files**.
## Build your site
Build your site **for production**:
```bash
npm run build
```
The static files are generated in the `build` folder.
## Deploy your site
Test your production build locally:
```bash
npm run serve
```
The `build` folder is now served at `http://localhost:3000/`.
You can now deploy the `build` folder **almost anywhere** easily, **for free** or very small cost (read the **[Deployment Guide](https://docusaurus.io/docs/deployment)**).