0.1.0 • Published 9 months ago

@inox-tools/portal-gun v0.1.0

Weekly downloads
-
License
MIT
Repository
-
Last release
9 months ago

Portal Gun

Transport HTML elements through your page during rendering using Portals.

Install

npm i @inox-tools/portal-gun

Add the integration to your astro.config.mjs:

// astro.config.mjs
import { defineConfig } from 'astro';
import portalGun from '@inox-tools/portal-gun';

export default defineConfig({
  integrations: [portalGun()],
});