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

14 lines
322 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} */
2022-10-03 20:52:15 +02:00
const nextConfig = {
reactStrictMode: true,
output: 'standalone'
}
module.exports = nextTranslate(nextPWA(nextConfig))