import type { NextConfig } from "next"; const nextConfig: NextConfig = { typescript: { ignoreBuildErrors: true, }, output: "standalone", images: { unoptimized: true, }, }; export default nextConfig;