2022-03-15 15:27:17 -05:00
|
|
|
import { defineConfig } from 'astro/config';
|
2022-08-22 11:25:57 -07:00
|
|
|
import alpine from '@astrojs/alpinejs';
|
2021-12-21 11:45:23 -06:00
|
|
|
|
2022-03-15 15:27:17 -05:00
|
|
|
// https://astro.build/config
|
|
|
|
export default defineConfig({
|
2022-08-22 11:25:57 -07:00
|
|
|
integrations: [alpine()],
|
2021-12-21 11:45:23 -06:00
|
|
|
});
|