mirror of
https://github.com/withastro/astro.git
synced 2025-02-03 22:29:08 -05:00
9 lines
256 B
JavaScript
9 lines
256 B
JavaScript
import { defineConfig } from 'astro/config';
|
|
import preact from '@astrojs/preact';
|
|
import svelte from "@astrojs/svelte";
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
integrations: [preact(), svelte()],
|
|
site: 'https://astro.build/',
|
|
});
|