PWA
Progressive Web Apps (PWA) are reliable, fast,
and engaging, although there are many things that can take a PWA from a baseline to exemplary experience.
(learn more)
This preset adds required modules for full PWA experience with Nuxt with almost zero-config!
Modules
Use options[module]
to customize each module or set to false
to disable it.
Setup
- Add
@nuxtjs/pwa
dependency using yarn or npm to your project - Add
@nuxtjs/pwa
module to nuxt.config.js
:
modules: [
'@nuxtjs/pwa'
]
modules: [
{
src: '@nuxtjs/pwa',
optimize: false,
workbox: {
},
}
]