mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-04 20:41:30 +01:00
10 lines
212 B
JavaScript
10 lines
212 B
JavaScript
const nextTranslate = require('next-translate-plugin')
|
|
|
|
/** @type {import("next").NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
output: 'standalone'
|
|
}
|
|
|
|
module.exports = nextTranslate(nextConfig)
|