mirror of
https://github.com/Xevion/Pac-Man.git
synced 2025-12-07 09:15:49 -06:00
7 lines
254 B
TypeScript
7 lines
254 B
TypeScript
import type { OnPageTransitionEndAsync } from "vike/types";
|
|
|
|
export const onPageTransitionEnd: OnPageTransitionEndAsync = async () => {
|
|
console.log("Page transition end");
|
|
document.querySelector("body")?.classList.remove("page-is-transitioning");
|
|
};
|