mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-04 20:41:30 +01:00
14 lines
329 B
JavaScript
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))
|