/** @type {import('next').NextConfig} */ const nextConfig = { output: 'standalone', rewrites: async () => [ { source: '/api/:path*', destination: 'http://cosmos:8074/:path*', }, ], } module.exports = nextConfig