From 5d5a8e65493c4db1cd0ff7afd13361b55e28d0c8 Mon Sep 17 00:00:00 2001 From: Shinobu Hayashi Date: Thu, 17 Feb 2022 21:40:51 +0900 Subject: [PATCH] Chore: configure buildOptions.site on examples/blog (#2590) --- examples/blog/astro.config.mjs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/examples/blog/astro.config.mjs b/examples/blog/astro.config.mjs index a1516f292f..b769e17430 100644 --- a/examples/blog/astro.config.mjs +++ b/examples/blog/astro.config.mjs @@ -10,4 +10,7 @@ export default /** @type {import('astro').AstroUserConfig} */ ({ // Enable the Preact renderer to support Preact JSX components. renderers: ['@astrojs/renderer-preact'], + buildOptions: { + site: 'https://example.com/', + }, });