kakawa/next.config.mjs
2024-09-27 01:00:12 +05:30

16 lines
298 B
JavaScript

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