[Vuejs]-How to remove looading percentage spinner in Nuxtjs App

3👍

Nuxt.js uses its own component to show a progress bar between the routes. You can customize it, disable it or create your own component.

If you don’t want to display the progress bar between the routes, simply add loading: false in your nuxt.config.js file:

 loading: false

for more details take a look at this link
https://nuxtjs.org/api/configuration-loading/

Leave a comment