Docs example: use HTTPS for site in astro.config.mjs (#5603)

This commit is contained in:
Zihan Chen 2022-12-15 22:35:43 +08:00 committed by GitHub
parent 2b11e97955
commit 7cbe7f5623
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,5 +10,5 @@ export default defineConfig({
// Enable React for the Algolia search component. // Enable React for the Algolia search component.
react(), react(),
], ],
site: `http://astro.build`, site: `https://astro.build`,
}); });