2024-10-23 12:18:24 +05:30
|
|
|
import type { NextConfig } from 'next';
|
|
|
|
|
|
|
|
const nextConfig: NextConfig = {
|
2025-02-15 01:45:15 +00:00
|
|
|
// output: 'standalone',
|
2024-10-15 12:24:05 +05:30
|
|
|
images: {
|
|
|
|
remotePatterns: [
|
|
|
|
{
|
|
|
|
protocol: 'https',
|
|
|
|
hostname: '**.amazonaws.com',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
protocol: 'http',
|
|
|
|
hostname: 'localhost',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
unoptimized: true,
|
|
|
|
},
|
2024-09-23 23:05:32 +05:30
|
|
|
};
|
2024-09-23 13:30:25 +05:30
|
|
|
|
|
|
|
export default nextConfig;
|