1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-09-20 22:45:53 +02:00
.profile/next.config.js
2023-04-02 22:44:09 +02:00

14 lines
329 B
JavaScript

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