/** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, typescript: { ignoreBuildErrors: true, }, images: { remotePatterns: [ { protocol: 'https', hostname: '**', }, { protocol: 'http', hostname: 'localhost', port: '8001', } ], }, } export default nextConfig;