1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-09-19 14:05:53 +02:00
.profile/next.config.js
2021-04-18 01:56:23 +02:00

12 lines
228 B
JavaScript

const nextPWA = require('next-pwa')
const nextTranslate = require('next-translate')
module.exports = nextTranslate(
nextPWA({
pwa: {
disable: process.env.NODE_ENV !== 'production',
dest: 'public'
}
})
)