web / frontend /next.config.mjs
ChandimaPrabath's picture
v 0.1
9d77c83
raw
history blame contribute delete
364 Bytes
import path from 'path';
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'standalone',
images:{
remotePatterns: [
{
protocol: 'https',
hostname: 'placehold.in',
port: '',
pathname: '/**',
}
]
}
};
export default nextConfig;