kakawa/next.config.mjs

20 lines
342 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-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;