Update next.config.js

This commit is contained in:
Steve Ruiz 2021-06-29 20:32:11 +01:00
parent 6351e31b01
commit 0dff86be66

View file

@ -3,11 +3,9 @@ const withPWA = require('next-pwa')
const isProduction = process.env.NODE_ENV === 'production'
module.exports = withPWA(
withNx({
pwa: {
disable: !isProduction,
dest: 'public',
},
})
)
module.exports = withPWA({
pwa: {
disable: !isProduction,
dest: 'public',
},
})