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

20 lines
452 B
JavaScript

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