swup / astro

Astro integration for swup 🚀
90 stars 2 forks source link

Add readme note about global instance availability #7

Closed daun closed 1 year ago

daun commented 1 year ago

Describe the problem

Describe the proposed solution

<script>
  console.log('swup not yet enabled', window.swup);
  document.addEventListener('swup:enable', () => {
    console.log('swup enabled', window.swup);
  });
</script>