This commit is contained in:
itqop 2025-12-07 19:56:17 +03:00
parent d07b9bacff
commit 1f19139b4e
2 changed files with 3 additions and 12 deletions

View File

@ -1,10 +0,0 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
images: {
formats: ['image/avif', 'image/webp'],
remotePatterns: [],
},
};
module.exports = nextConfig;

View File

@ -1,10 +1,11 @@
/** @type {import('next').NextConfig} */ /** @type {import('next').NextConfig} */
const nextConfig = { const nextConfig = {
reactStrictMode: true, reactStrictMode: true,
output: 'standalone',
images: { images: {
formats: ['image/webp', 'image/avif'], formats: ['image/avif', 'image/webp'],
remotePatterns: [], // если нужно — оставляем
}, },
}; };
export default nextConfig; export default nextConfig;