diff options
author | 2022-02-17 21:40:51 +0900 | |
---|---|---|
committer | 2022-02-17 07:40:51 -0500 | |
commit | 5d5a8e65493c4db1cd0ff7afd13361b55e28d0c8 (patch) | |
tree | 7d2110b902a097cc3c3ff755869d67420db9031b /examples/blog | |
parent | 934d9750cfb9f6d3c0adcc0aabd0c56890b9ce9b (diff) | |
download | astro-5d5a8e65493c4db1cd0ff7afd13361b55e28d0c8.tar.gz astro-5d5a8e65493c4db1cd0ff7afd13361b55e28d0c8.tar.zst astro-5d5a8e65493c4db1cd0ff7afd13361b55e28d0c8.zip |
Chore: configure buildOptions.site on examples/blog (#2590)
Diffstat (limited to 'examples/blog')
-rw-r--r-- | examples/blog/astro.config.mjs | 3 |
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/', + }, }); |