Files
patchy631--ai-engineering-hub/open-agent-builder/next.config.js
T
2026-07-13 12:37:47 +08:00

23 lines
457 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
protocol: 'https',
hostname: '*',
pathname: '/**',
},
],
},
// Mark server-only packages for Next.js 16+
serverExternalPackages: [
'@langchain/langgraph',
'@langchain/langgraph-checkpoint-redis',
'redis',
'@redis/client',
'@e2b/code-interpreter',
'e2b',
],
}
module.exports = nextConfig