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