A simple Next.js progressbar component using NProgress.
I've created this Blog to help you create your own progressbar
npm i nextjs-progressbar
After installing the package, import this in your pages/_app.js
file.
import NextNprogress from 'nextjs-progressbar';
And for rendering add <NextNProgress />
inside Container
component.
<NextNProgress
color="#29D"
startPosition="0.3"
stopDelayMs="200"
height="3"
/>
color
: to change the default color of progressbar. You can also usergb(,,)
orrgba(,,,)
.startPosition
: to set the default starting position :0.3 = 30%
.stopDelayMs
: time for delay to stop progressbar inms
.height
: height of progressbar inpx
.
You can use other configurations which NProgress provides by adding a JSON in options
props.
<NextNProgress
options={{ easing: 'ease', speed: 500 }}
/>