diff options
author | 2021-08-26 12:08:52 -0700 | |
---|---|---|
committer | 2021-08-26 12:08:52 -0700 | |
commit | ff92be637ffd9a9841b771e94d8deef1c62422cb (patch) | |
tree | 56dab4a40c432e95914eaedbf3df7d3f8175b60d /docs/src/pages/installation.md | |
parent | 155676275b1c61fb37e22fb09c4967224b2c17af (diff) | |
download | astro-ff92be637ffd9a9841b771e94d8deef1c62422cb.tar.gz astro-ff92be637ffd9a9841b771e94d8deef1c62422cb.tar.zst astro-ff92be637ffd9a9841b771e94d8deef1c62422cb.zip |
add "astro preview" command (#1226)
* add "astro preview" command
* Update green-buttons-reflect.md
* Update cli-reference.md
Diffstat (limited to 'docs/src/pages/installation.md')
-rw-r--r-- | docs/src/pages/installation.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/src/pages/installation.md b/docs/src/pages/installation.md index ea6ff9d12..e5e0586e4 100644 --- a/docs/src/pages/installation.md +++ b/docs/src/pages/installation.md @@ -87,7 +87,8 @@ You can now replace the placeholder "scripts" section of your `package.json` fil "scripts": { - "test": "echo \"Error: no test specified\" && exit 1" + "dev": "astro dev", -+ "build": "astro build" ++ "build": "astro build", ++ "preview": "astro preview" }, } ``` |