summaryrefslogtreecommitdiff
path: root/examples/framework-alpine/astro.config.mjs
diff options
context:
space:
mode:
authorGravatar Fred K. Schott <fkschott@gmail.com> 2022-08-22 11:25:57 -0700
committerGravatar GitHub <noreply@github.com> 2022-08-22 14:25:57 -0400
commit7310e8a1780dff2ffb57f8a6cfd3d021d019f6b8 (patch)
tree7f5fc0be462b7a5d786adeb3d031e501da4f6527 /examples/framework-alpine/astro.config.mjs
parenta70f69a06c069781c56393289f82efc1251fc37b (diff)
downloadastro-7310e8a1780dff2ffb57f8a6cfd3d021d019f6b8.tar.gz
astro-7310e8a1780dff2ffb57f8a6cfd3d021d019f6b8.tar.zst
astro-7310e8a1780dff2ffb57f8a6cfd3d021d019f6b8.zip
add an alpine integration and update example (#4406)
Diffstat (limited to 'examples/framework-alpine/astro.config.mjs')
-rw-r--r--examples/framework-alpine/astro.config.mjs4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/framework-alpine/astro.config.mjs b/examples/framework-alpine/astro.config.mjs
index ade2c1278..60bfc7d45 100644
--- a/examples/framework-alpine/astro.config.mjs
+++ b/examples/framework-alpine/astro.config.mjs
@@ -1,7 +1,7 @@
import { defineConfig } from 'astro/config';
+import alpine from '@astrojs/alpinejs';
// https://astro.build/config
export default defineConfig({
- // No integrations are needed for AlpineJS support, just use Astro components!
- integrations: [],
+ integrations: [alpine()],
});