blob: 5fddf771766cb9ab9954de0012dfc5584d0a4ad6 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
// @ts-check
import { defineConfig } from 'astro/config';
import alpine from '@astrojs/alpinejs';
// https://astro.build/config
export default defineConfig({
integrations: [alpine()],
});
|