/** @type {import('next').NextConfig} */ const nextConfig = { output: 'standalone', async rewrites() { return [ { source: '/v1/:path*', destination: 'http://127.0.0.1:8080/v1/:path*', }, ] }, }; export default nextConfig;