/** @type {import('next').NextConfig} */ // v2 const nextConfig = { images: { remotePatterns: [ { protocol: "http", hostname: "localhost", port: "8000", }, { protocol: "http", hostname: "0.0.0.0", port: "8000", }, ], }, async rewrites() { return [ { source: "/media/:path*", destination: "http://localhost:8000/media/:path*", }, ]; }, }; export default nextConfig;