Skip to content

Instantly share code, notes, and snippets.

@sand97
Last active September 27, 2022 10:12
Show Gist options
  • Save sand97/35680c38f89aa2a7d8c611b7b7856dc8 to your computer and use it in GitHub Desktop.
Save sand97/35680c38f89aa2a7d8c611b7b7856dc8 to your computer and use it in GitHub Desktop.
Example of Nextjs Splash screen _app.js
function MyApp({ Component, pageProps }) {
// Hide splash screen shen we are server side
useEffect(() => {
if (typeof window !== 'undefined') {
const loader = document.getElementById('globalLoader');
if (loader)
loader.style.display = 'none';
}
}, []);
return <Component {...pageProps} />
}
export default MyApp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment