summaryrefslogtreecommitdiff
path: root/examples/framework-alpine/astro.config.mjs
diff options
context:
space:
mode:
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()],
});