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