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