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