Reputation: 21
next-pwa
:next
:How to load more images in fallbacks.image for example i neeed two images into fallbacks
file - next.config.js
const withPWA = require('next-pwa');
module.exports = withPWA({
pwa: {
dest: 'public',
fallbacks: {
image: 'static/fallback.svg'
},
}
})
Upvotes: 2
Views: 218