import type { NextConfig } from "next"; const nextConfig: NextConfig = { output: 'standalone', images: { remotePatterns: [ { protocol: 'http', hostname: 'localhost' }, { protocol: 'https', hostname: 'images.unsplash.com' }, ], }, typescript: { ignoreBuildErrors: true, }, }; export default nextConfig;