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