apal21 / nextjs-progressbar

A simple Next.js progressbar component using NProgress.
https://www.npmjs.com/package/nextjs-progressbar
MIT License
780 stars 61 forks source link

Shows Circluar Spinner in top right corner #15

Closed insivika closed 3 years ago

insivika commented 3 years ago

In additional to the loading bar animation there's a circular spinner in the top right corner of the screen. When inspecting it, I see that it has an id of nprogress however I'm unable to hide it via 'display: none`.

Screen Shot 2020-11-09 at 6 33 07 PM
apal21 commented 3 years ago

Hey @insivika,

This package uses nprogress. So you can do all kinds of modifications it supports.

To hide the spinner, you can do this:


<NextNprogress
  options={{ showSpinner: false }}
/>