memento-dev/app/pages/+onPageTransitionStart.ts

8 lines
201 B
TypeScript
Executable File

import type { OnPageTransitionStartAsync } from "vike/types";
import NProgress from "nprogress";
export const onPageTransitionStart: OnPageTransitionStartAsync = async () => {
NProgress.start();
};