2
2
mirror of https://github.com/Thream/website.git synced 2024-07-21 09:28:32 +02:00
website/next.config.js

12 lines
228 B
JavaScript
Raw Normal View History

2021-10-24 05:19:39 +02:00
const nextPWA = require('next-pwa')
2021-10-24 05:48:06 +02:00
const nextTranslate = require('next-translate')
2021-10-24 05:19:39 +02:00
module.exports = nextTranslate(
nextPWA({
pwa: {
disable: process.env.NODE_ENV !== 'production',
dest: 'public'
}
})
)