Forcing image format to PNG

This commit is contained in:
l-nmch
2025-01-18 01:18:35 +01:00
parent 4f4a55b2fe
commit b7974f42ea

View File

@@ -1,4 +1,7 @@
/** @type {import('next').NextConfig} */
module.exports = {
output: "standalone",
};
images: {
formats: ['image/png'],
},
};