diff options
author | 2022-08-22 11:25:57 -0700 | |
---|---|---|
committer | 2022-08-22 14:25:57 -0400 | |
commit | 7310e8a1780dff2ffb57f8a6cfd3d021d019f6b8 (patch) | |
tree | 7f5fc0be462b7a5d786adeb3d031e501da4f6527 /examples/framework-alpine/astro.config.mjs | |
parent | a70f69a06c069781c56393289f82efc1251fc37b (diff) | |
download | astro-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.mjs | 4 |
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()], }); |