diff options
author | 2021-09-14 03:36:04 +0200 | |
---|---|---|
committer | 2021-09-13 18:36:04 -0700 | |
commit | b0a84a221bcd18ce34142c312b5c173ad08a5cb4 (patch) | |
tree | 1af2ab45dbc804ce1bd929287929d974edf9efc2 | |
parent | 6b8630c641242b1d9086f5628bc1396122029a68 (diff) | |
download | astro-b0a84a221bcd18ce34142c312b5c173ad08a5cb4.tar.gz astro-b0a84a221bcd18ce34142c312b5c173ad08a5cb4.tar.zst astro-b0a84a221bcd18ce34142c312b5c173ad08a5cb4.zip |
Fix typo (#1360)
-rw-r--r-- | docs/src/pages/guides/deploy.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/src/pages/guides/deploy.md b/docs/src/pages/guides/deploy.md index de98b9e3f..6dc96ede9 100644 --- a/docs/src/pages/guides/deploy.md +++ b/docs/src/pages/guides/deploy.md @@ -31,7 +31,7 @@ By default, the build output will be placed at `dist/`. You may deploy this `dis ## GitHub Pages -> **Warning:** By default, Github Pages will break the `_astro/` directory of your deployed website. To disable this behavior and fix your this issue, make sure that you use the `deploy.sh` script below or manually add an empty `.nojekyll` file to your `public/` site directory. +> **Warning:** By default, Github Pages will break the `_astro/` directory of your deployed website. To disable this behavior and fix this issue, make sure that you use the `deploy.sh` script below or manually add an empty `.nojekyll` file to your `public/` site directory. 1. Set the correct `buildOptions.site` in `astro.config.mjs`. 1. Inside your project, create `deploy.sh` with the following content (uncommenting the appropriate lines), and run it to deploy: |