diff options
-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/', + }, }); |