Files
rahavard/next.config.js

29 lines
646 B
JavaScript
Executable File

/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'standalone',
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'axicon-portal.iran.liara.run',
port: '',
pathname: '/**',
},
{
protocol: 'http',
hostname: 'localhost',
port: '8000',
pathname: '/**',
},
{
protocol: 'https',
hostname: process.env.NEXT_PUBLIC_IMAGE_HOSTNAME || '',
port: '',
pathname: '/**',
},
],
},
}
module.exports = nextConfig