mirror of
https://github.com/withastro/astro.git
synced 2024-12-23 21:53:55 -05:00
ddefb172f6
* add Astro.url * Add examples of how to create the canonicalURL Co-authored-by: Matthew Phillips <matthew@skypack.dev>
9 lines
271 B
JavaScript
9 lines
271 B
JavaScript
import { defineConfig } from 'astro/config';
|
|
import preact from '@astrojs/preact';
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
// Enable the Preact integration to support Preact JSX components.
|
|
integrations: [preact()],
|
|
site: `http://astro.build`
|
|
});
|