2022-12-18 11:56:34 -05:00
|
|
|
import { defineConfig } from 'astro/config';
|
2022-05-31 22:55:42 -04:00
|
|
|
|
2022-12-18 11:56:34 -05:00
|
|
|
// https://astro.build/config
|
|
|
|
import tailwind from "@astrojs/tailwind";
|
|
|
|
|
|
|
|
// https://astro.build/config
|
|
|
|
import svelte from "@astrojs/svelte";
|
2022-05-31 22:55:42 -04:00
|
|
|
|
2022-12-18 11:56:34 -05:00
|
|
|
// https://astro.build/config
|
|
|
|
export default defineConfig({
|
|
|
|
integrations: [tailwind(), svelte()]
|
|
|
|
});
|