apal21 / nextjs-progressbar

A simple Next.js progressbar component using NProgress.

Home Page:https://www.npmjs.com/package/nextjs-progressbar

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Shows Circluar Spinner in top right corner

insivika opened this issue · comments

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

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 }}
/>