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

// https://astro.build/config
export default defineConfig({
	integrations: [preact()],
	site: 'https://example.com',
	base: '/subpath',
});