2
2
mirror of https://github.com/Thream/website.git synced 2024-07-12 13:20:11 +02:00
website/next.config.js

17 lines
395 B
JavaScript

const nextTranslate = require('next-translate-plugin')
/** @type {import("next").NextConfig} */
const nextConfig = {
reactStrictMode: false,
output: 'standalone',
images: {
domains: [
'api.thream.theoludwig.fr',
'file-uploads-api.theoludwig.fr',
...(process.env.NODE_ENV !== 'production' ? ['127.0.0.1'] : [])
]
}
}
module.exports = nextTranslate(nextConfig)