Next Loading Bar
npm install next-loading-bar``bash`
npm i next-loading-bar
Letakkan code berikut pada root components
`js`
import NextNProgress from 'nextjs-progressbar';
And for rendering add to your return() in MyApp():
`js
import NextNProgress from 'nextjs-progressbar';
export default function MyApp({ Component, pageProps }) {
return (
<>
>
);
}
`
If no props are passed to , below is the default configuration applied.
`jsx`
- color: to change the default color of progressbar. You can also use rgb(,,) or rgba(,,,).startPosition
- : to set the default starting position : 0.3 = 30%.stopDelayMs
- : time for delay to stop progressbar in ms.height
- : height of progressbar in px.showOnShallow
- : You can choose whether you want the progressbar to be displayed if you're using shallow routing. It takes a boolean. Learn more about shallow routing in Next.js docs.
#### Adding nonce
We use internal css in this package. If you are using csp, you can add nonce to the ;
}}
/>
`
#### Other Configs
You can use other configurations which NProgress provides by adding a JSON in options props.
`jsx``