mirror of
https://github.com/withastro/astro.git
synced 2025-01-13 22:11:20 -05:00
1153331cbb
* feat(alpinejs): allows customzing the Alpine instance * chore: add e2e tests * fix: rename script * Update index.ts * fix: lockfile
6 lines
147 B
JavaScript
6 lines
147 B
JavaScript
import { defineConfig } from 'astro/config';
|
|
import alpine from '@astrojs/alpinejs';
|
|
|
|
export default defineConfig({
|
|
integrations: [alpine()],
|
|
})
|