/** @type {import('next').NextConfig} */ const nextConfig = { transpilePackages: ['@horux/shared'], async rewrites() { return [ { source: '/api/:path*', destination: 'http://localhost:4000/api/:path*', }, { source: '/health', destination: 'http://localhost:4000/health', }, ]; }, }; module.exports = nextConfig;