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