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

14 lines
301 B
JavaScript
Raw 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({
2022-09-29 19:07:20 +02:00
reactStrictMode: true,
output: 'standalone'
2021-04-18 01:56:23 +02:00
})
)