mirror of
https://github.com/withastro/astro.git
synced 2024-12-30 22:03:56 -05:00
9 lines
190 B
JavaScript
9 lines
190 B
JavaScript
|
import { defineConfig } from 'astro/config';
|
||
|
import alpine from '@astrojs/alpinejs';
|
||
|
|
||
|
export default defineConfig({
|
||
|
integrations: [alpine({
|
||
|
entrypoint: "./src/entrypoint.ts"
|
||
|
})],
|
||
|
})
|