mirror of
https://github.com/withastro/astro.git
synced 2025-01-06 22:10:10 -05:00
7 lines
147 B
JavaScript
7 lines
147 B
JavaScript
|
import { defineConfig } from 'astro/config';
|
||
|
import alpine from '@astrojs/alpinejs';
|
||
|
|
||
|
export default defineConfig({
|
||
|
integrations: [alpine()],
|
||
|
})
|