Summary
This release contains LOTS of internal improvements!
- Starting with this release, PWA module is a single package (no longer depending on
@nuxtjs/meta
, ...) - Package install size reduced from
17.1MB
to1.42MB
thanks to https://github.com/nuxt-community/jimp-compact - Now you can provide all module related options under
pwa
key innuxt.config.js
: (except one signal module) and older option may be deprecated in future versions.
export default {
modules: [
'@nuxtjs/pwa'
],
pwa: {
icon: {},
manifest: {},
meta: {},
workbox: {},
}
}