mirror of
https://github.com/withastro/astro.git
synced 2025-01-06 22:10:10 -05:00
c820defe65
* fix(rss): rssSchema definition to allow calling standard zod object methods * fix: condition * chore(alpinejs): add e2e test * Discard changes to .changeset/mighty-icons-try.md --------- Co-authored-by: Nate Moore <natemoo-re@users.noreply.github.com>
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()],
|
|
})
|