/** @type {import('next').NextConfig} */ const nextConfig = { output: "standalone", images: { remotePatterns: [ { protocol: 'http', hostname: 'localhost', port: '3001', pathname: '/assets/**', }, ], }, }; export default nextConfig;