Revolutionize User Experiences: Embracing the Power of Progressive Web Apps (PWAs)

1.Add @nuxtjs/pwa dependency to your project
      yarn add --dev @nuxtjs/pwa # or  npm i --save-dev @nuxtjs/pwa
  
2.Add your nuxt.config.js file to add pwa module
      {
  buildModules: [
    '@nuxtjs/pwa',
  ]
}
  
3.Define your plugin config
      {
  pwa: {
    icon: false // disables the icon module
  }
}
  
Not : Dont forget to add pwa files to gitignore
      sw.*