0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-03-10 23:01:26 -05:00
astro/astro.config.mjs
2025-03-04 14:40:45 +00:00

8 lines
190 B
JavaScript

// @ts-check
import { defineConfig } from 'astro/config';
import alpine from '@astrojs/alpinejs';
// https://astro.build/config
export default defineConfig({
integrations: [alpine()],
});