Files
pawol.nu/next.config.js
T

10 lines
143 B
JavaScript
Raw Normal View History

2022-01-09 21:18:11 +04:00
const withPWA = require('next-pwa')
2020-12-23 00:07:21 +01:00
2022-01-09 21:18:11 +04:00
module.exports = withPWA({
pwa: {
dest: 'public',
register: true,
skipWaiting: true,
}
})