11 lines
162 B
JavaScript
11 lines
162 B
JavaScript
const withPWA = require('next-pwa')
|
|
|
|
module.exports = withPWA({
|
|
pwa: {
|
|
dest: 'public',
|
|
register: true,
|
|
skipWaiting: true,
|
|
},
|
|
swcMinify: true
|
|
})
|