/** @type {import('next').NextConfig} */ const nextConfig = { images: { remotePatterns: [ { protocol: 'https', hostname: 'picsum.photos', }, ], }, async rewrites() { return [ { source: '/api/:path*', destination: 'http://127.0.0.1:4000/api/:path*', }, ]; }, }; module.exports = nextConfig;