import type { NextConfig } from "next"; const nextConfig: NextConfig = { output: "standalone", typescript: { ignoreBuildErrors: true, // typechecking should be separeted by build }, }; export default nextConfig;