kakawa/next.config.mjs

14 lines
251 B
JavaScript
Raw Normal View History

2024-09-23 08:00:25 +00:00
/** @type {import('next').NextConfig} */
2024-09-23 17:35:32 +00:00
const nextConfig = {
2024-09-26 04:20:24 +00:00
images: {
remotePatterns: [
{
protocol: 'https',
hostname: '**.amazonaws.com',
},
],
},
2024-09-23 17:35:32 +00:00
};
2024-09-23 08:00:25 +00:00
export default nextConfig;