rsnext/examples/progressive-web-app/next.config.js

10 lines
170 B
JavaScript
Raw Normal View History

const withPWA = require('next-pwa')
const runtimeCaching = require('next-pwa/cache')
module.exports = withPWA({
pwa: {
dest: 'public',
runtimeCaching,
},
})