diff options
author | 2022-12-15 22:35:43 +0800 | |
---|---|---|
committer | 2022-12-15 15:35:43 +0100 | |
commit | 7cbe7f5623ef65739bd596267237cd03634668d0 (patch) | |
tree | 5b5a538f7c7f3e1462c0bee6eee06fb6a2854816 /examples/docs/astro.config.mjs | |
parent | 2b11e9795549b5dc1209c2552db85d2b85b8139b (diff) | |
download | astro-7cbe7f5623ef65739bd596267237cd03634668d0.tar.gz astro-7cbe7f5623ef65739bd596267237cd03634668d0.tar.zst astro-7cbe7f5623ef65739bd596267237cd03634668d0.zip |
Docs example: use HTTPS for `site` in `astro.config.mjs` (#5603)
Diffstat (limited to 'examples/docs/astro.config.mjs')
-rw-r--r-- | examples/docs/astro.config.mjs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/docs/astro.config.mjs b/examples/docs/astro.config.mjs index 55692c546..764f8ec09 100644 --- a/examples/docs/astro.config.mjs +++ b/examples/docs/astro.config.mjs @@ -10,5 +10,5 @@ export default defineConfig({ // Enable React for the Algolia search component. react(), ], - site: `http://astro.build`, + site: `https://astro.build`, }); |