kakawa/next.config.ts
2025-02-15 01:45:15 +00:00

21 lines
357 B
TypeScript

import type { NextConfig } from 'next';
const nextConfig: NextConfig = {
// output: 'standalone',
images: {
remotePatterns: [
{
protocol: 'https',
hostname: '**.amazonaws.com',
},
{
protocol: 'http',
hostname: 'localhost',
},
],
unoptimized: true,
},
};
export default nextConfig;