We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/binal182/binal-mcpserver'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
next.config.ts•340 B
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
eslint: {
// Allow production builds to complete even with ESLint errors
ignoreDuringBuilds: true,
},
typescript: {
// Allow production builds to complete even with TypeScript errors
ignoreBuildErrors: true,
},
};
export default nextConfig;