import type { NextConfig } from 'next' const nextConfig: NextConfig = { output: 'standalone', turbopack: { root: __dirname, }, // Optimize for minimal MCP server eslint: { ignoreDuringBuilds: true, }, } export default nextConfig