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