Files
pawol.nu/next.config.js
T
Cédric FAMIBELLE-PRONZOLA 41c77127c3 Update next-pwa and change config
2022-10-23 05:22:41 +04:00

16 lines
306 B
JavaScript

const withPWA = require('next-pwa')({
disable: process.env.NODE_ENV !== 'production',
dest: 'public',
register: true,
skipWaiting: true
})
const domains = process.env.NEXT_PUBLIC_DOMAINS_IMAGE.split(' ') || 'localhost'
module.exports = withPWA({
swcMinify: true,
images: {
domains
}
})