summaryrefslogtreecommitdiff
path: root/examples/blog/astro.config.mjs
blob: f682daa06065140a012a8c95263aaa1c41e0d84e (plain) (blame)
1
2
3
4
5
6
7
8
9
import { defineConfig } from 'astro/config';

// https://astro.build/config
export default defineConfig({
	renderers: ['@astrojs/renderer-preact'],
	buildOptions: {
		site: 'https://example.com/',
	},
});