/** @type {import('next').NextConfig} */ const nextConfig = { images: { remotePatterns: [ { protocol: "https", hostname: "images.unsplash.com" }, { protocol: "https", hostname: "tailwindcss.com" } ] }, async rewrites() { return [ { source: "/api/:path*", destination: "http://localhost:3001/:path*" } ]; } }; module.exports = nextConfig;