1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-11-05 04:51:30 +01:00
.profile/next.config.js

13 lines
275 B
JavaScript
Raw Permalink Normal View History

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