2
2
mirror of https://github.com/Thream/website.git synced 2024-07-21 09:28:32 +02:00
website/next.config.js

17 lines
395 B
JavaScript
Raw Normal View History

2023-04-03 00:11:19 +02:00
const nextTranslate = require('next-translate-plugin')
2021-10-24 05:19:39 +02:00
/** @type {import("next").NextConfig} */
2022-12-13 11:38:24 +01:00
const nextConfig = {
reactStrictMode: false,
output: 'standalone',
images: {
domains: [
'api.thream.theoludwig.fr',
'file-uploads-api.theoludwig.fr',
2022-12-13 11:38:24 +01:00
...(process.env.NODE_ENV !== 'production' ? ['127.0.0.1'] : [])
]
}
}
module.exports = nextTranslate(nextConfig)