2024-10-23 06:48:24 +00:00
|
|
|
import type { NextConfig } from 'next';
|
|
|
|
|
|
|
|
const nextConfig: NextConfig = {
|
2024-10-15 06:54:05 +00:00
|
|
|
output: 'standalone',
|
|
|
|
images: {
|
|
|
|
remotePatterns: [
|
|
|
|
{
|
|
|
|
protocol: 'https',
|
|
|
|
hostname: '**.amazonaws.com',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
protocol: 'http',
|
|
|
|
hostname: 'localhost',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
unoptimized: true,
|
|
|
|
},
|
2024-09-23 17:35:32 +00:00
|
|
|
};
|
2024-09-23 08:00:25 +00:00
|
|
|
|
|
|
|
export default nextConfig;
|