From 7cbe7f5623ef65739bd596267237cd03634668d0 Mon Sep 17 00:00:00 2001 From: Zihan Chen Date: Thu, 15 Dec 2022 22:35:43 +0800 Subject: [PATCH] Docs example: use HTTPS for `site` in `astro.config.mjs` (#5603) --- examples/docs/astro.config.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/docs/astro.config.mjs b/examples/docs/astro.config.mjs index 55692c546802..764f8ec09670 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`, });