1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-09-18 21:55:52 +02:00
.profile/next.config.js

13 lines
275 B
JavaScript

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