2025-12-07 17:44:08 +01:00
|
|
|
/** @type {import('next').NextConfig} */
|
|
|
|
|
const nextConfig = {
|
|
|
|
|
reactStrictMode: true,
|
2025-12-07 17:56:17 +01:00
|
|
|
output: 'standalone',
|
2025-12-07 17:44:08 +01:00
|
|
|
images: {
|
2025-12-07 17:56:17 +01:00
|
|
|
formats: ['image/avif', 'image/webp'],
|
|
|
|
|
remotePatterns: [], // если нужно — оставляем
|
2025-12-07 17:44:08 +01:00
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default nextConfig;
|