UNPKG

next

Version:

The React Framework

9 lines (8 loc) 456 B
import { initialize } from './initialize'; const NOOP = ()=>{}; export const devBuildIndicator = { /** Shows build indicator when Next.js is compiling. Requires initialize() first. */ show: NOOP, /** Hides build indicator when Next.js finishes compiling. Requires initialize() first. */ hide: NOOP, /** Sets up the build indicator UI component. Call this before using show/hide. */ initialize }; //# sourceMappingURL=dev-build-indicator.js.map