import type { NextConfig } from "next"; const nextConfig: NextConfig = { /* config options here */ output: "standalone", typescript: { ignoreBuildErrors: true, // ← skip type checking }, eslint: { ignoreDuringBuilds: true, // ← skip eslint too }, }; export default nextConfig;