From b7974f42ea31e65fff65e52188bbe61b8754c3cd Mon Sep 17 00:00:00 2001 From: l-nmch Date: Sat, 18 Jan 2025 01:18:35 +0100 Subject: [PATCH] Forcing image format to PNG --- next.config.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/next.config.js b/next.config.js index 2daae00..e283a57 100644 --- a/next.config.js +++ b/next.config.js @@ -1,4 +1,7 @@ /** @type {import('next').NextConfig} */ module.exports = { - output: "standalone", - }; \ No newline at end of file + output: "standalone", + images: { + formats: ['image/png'], + }, +}; \ No newline at end of file