summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Shinobu Hayashi <PhilisPaxil@gmail.com> 2022-02-17 21:40:51 +0900
committerGravatar GitHub <noreply@github.com> 2022-02-17 07:40:51 -0500
commit5d5a8e65493c4db1cd0ff7afd13361b55e28d0c8 (patch)
tree7d2110b902a097cc3c3ff755869d67420db9031b
parent934d9750cfb9f6d3c0adcc0aabd0c56890b9ce9b (diff)
downloadastro-5d5a8e65493c4db1cd0ff7afd13361b55e28d0c8.tar.gz
astro-5d5a8e65493c4db1cd0ff7afd13361b55e28d0c8.tar.zst
astro-5d5a8e65493c4db1cd0ff7afd13361b55e28d0c8.zip
Chore: configure buildOptions.site on examples/blog (#2590)
-rw-r--r--examples/blog/astro.config.mjs3
1 files changed, 3 insertions, 0 deletions
diff --git a/examples/blog/astro.config.mjs b/examples/blog/astro.config.mjs
index a1516f292..b769e1743 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/',
+ },
});