2
2
mirror of https://github.com/Thream/website.git synced 2024-07-06 18:40:12 +02:00
website/next.config.js

20 lines
452 B
JavaScript
Raw Normal View History

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",
eslint: {
ignoreDuringBuilds: true,
},
2022-12-13 11:38:24 +01:00
images: {
domains: [
"api.thream.theoludwig.fr",
"file-uploads-api.thream.theoludwig.fr",
...(process.env.NODE_ENV !== "production" ? ["127.0.0.1"] : []),
],
},
2022-12-13 11:38:24 +01:00
}
module.exports = nextTranslate(nextConfig)