1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-09-19 22:15:53 +02:00
.profile/next.config.js

12 lines
228 B
JavaScript
Raw Normal View History

2021-04-18 01:56:23 +02:00
const nextPWA = require('next-pwa')
const nextTranslate = require('next-translate')
module.exports = nextTranslate(
nextPWA({
pwa: {
disable: process.env.NODE_ENV !== 'production',
dest: 'public'
}
})
)