import type { NextConfig } from 'next' const nextConfig: NextConfig = { output: 'standalone', // Production ready конфигурация после завершения оптимизации eslint: { // В production режиме включаем полную проверку ignoreDuringBuilds: false, dirs: ['src'], }, typescript: { // В production режиме включаем полную проверку типов ignoreBuildErrors: false, }, images: { remotePatterns: [ { protocol: 'https', hostname: 's3.twcstorage.ru', port: '', pathname: '/**', }, ], }, // Дополнительные оптимизации производительности experimental: { optimizePackageImports: ['lucide-react'], }, } export default nextConfig