/** @type {import('next').NextConfig} */ const nextConfig = { typescript: { ignoreBuildErrors: true, }, images: { unoptimized: true, remotePatterns: [ { protocol: 'http', hostname: '160.187.167.213', port: '', pathname: '/uploads/**', }, { protocol: 'https', hostname: '160.187.167.213', port: '', pathname: '/uploads/**', }, { protocol: 'http', hostname: '192.168.1.19', port: '1337', pathname: '/uploads/**', }, ], }, } export default nextConfig