/** @type {import('next').NextConfig} */ const nextConfig = { output: 'standalone', images: { remotePatterns: [ { protocol: 'http', hostname: 'dealer.carmodoo.com', pathname: '/data/**', }, { protocol: 'https', hostname: 'dealer.carmodoo.com', pathname: '/data/**', }, { protocol: 'https', hostname: 'images.unsplash.com', pathname: '/**', }, { protocol: 'http', hostname: 'localhost', pathname: '/uploads/**', }, { protocol: 'http', hostname: '192.168.0.202', pathname: '/uploads/**', }, ], }, env: { NEXT_PUBLIC_API_URL: process.env.NEXT_PUBLIC_API_URL || 'http://192.168.0.202:8000', }, } module.exports = nextConfig