2022-03-15 20:27:17 +00:00
|
|
|
import { defineConfig } from 'astro/config';
|
2021-08-23 21:07:03 +00:00
|
|
|
|
2022-03-15 20:27:17 +00:00
|
|
|
// https://astro.build/config
|
|
|
|
export default defineConfig({
|
2021-07-20 04:07:49 +00:00
|
|
|
renderers: ['@astrojs/renderer-preact'],
|
2022-02-17 12:40:51 +00:00
|
|
|
buildOptions: {
|
|
|
|
site: 'https://example.com/',
|
|
|
|
},
|
2021-08-23 21:07:03 +00:00
|
|
|
});
|