2b76ee8d75
* feat: add astro/config entrypoint * chore: update examples to use `defineConfig` util * chore: prettier fix * chore: add changeset
9 lines
205 B
JavaScript
9 lines
205 B
JavaScript
import { defineConfig } from 'astro/config';
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
renderers: ['@astrojs/renderer-preact'],
|
|
buildOptions: {
|
|
site: 'https://example.com/',
|
|
},
|
|
});
|