0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-16 21:46:22 -05:00

Chore: configure buildOptions.site on examples/blog (#2590)

This commit is contained in:
Shinobu Hayashi 2022-02-17 21:40:51 +09:00 committed by GitHub
parent 934d9750cf
commit 5d5a8e6549
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,4 +10,7 @@
export default /** @type {import('astro').AstroUserConfig} */ ({ export default /** @type {import('astro').AstroUserConfig} */ ({
// Enable the Preact renderer to support Preact JSX components. // Enable the Preact renderer to support Preact JSX components.
renderers: ['@astrojs/renderer-preact'], renderers: ['@astrojs/renderer-preact'],
buildOptions: {
site: 'https://example.com/',
},
}); });