import type { NextConfig } from "next"; const nextConfig: NextConfig = { output: "standalone", basePath: "/crm", typescript: { ignoreBuildErrors: true, }, reactStrictMode: false, }; export default nextConfig;