kakawa/next.config.mjs

20 lines
388 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 19:30:12 +00:00
output: 'export',
2024-09-26 04:20:24 +00:00
images: {
remotePatterns: [
{
protocol: 'https',
hostname: '**.amazonaws.com',
},
{
protocol: 'http',
hostname: 'localhost',
},
2024-09-26 04:20:24 +00:00
],
2024-09-26 19:30:12 +00:00
unoptimized: true,
},
2024-09-23 17:35:32 +00:00
};
2024-09-23 08:00:25 +00:00
export default nextConfig;