0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-03-24 23:21:57 -05:00
astro/packages/integrations/spa/client-static.js
2022-03-26 05:38:44 -05:00

8 lines
161 B
JavaScript

import listen from 'micromorph/spa';
export default () =>
listen({
afterDiff() {
window.dispatchEvent(new CustomEvent('astro:locationchange'));
},
});