From 6ae7ec75efd0fb6e0f68127f5f30dbd39137e738 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9o=20LUDWIG?= Date: Sat, 22 Jul 2023 18:31:59 +0200 Subject: [PATCH] fix: wrong file uploads api domain in config --- next.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/next.config.js b/next.config.js index 5d8cc46..06baef3 100644 --- a/next.config.js +++ b/next.config.js @@ -7,7 +7,7 @@ const nextConfig = { images: { domains: [ 'api.thream.theoludwig.fr', - 'file-uploads-api.theoludwig.fr', + 'file-uploads-api.thream.theoludwig.fr', ...(process.env.NODE_ENV !== 'production' ? ['127.0.0.1'] : []) ] }