kakawa/next.config.ts

21 lines
357 B
TypeScript
Raw Normal View History

2024-10-23 12:18:24 +05:30
import type { NextConfig } from 'next';
const nextConfig: NextConfig = {
// 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;