Files
0ba5cd34-43ee-4aab-bd91-62a…/next.config.ts
2025-12-22 12:53:26 +02:00

16 lines
304 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
devIndicators: false,
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'webuild-dev.s3.eu-north-1.amazonaws.com',
},
],
},
};
export default nextConfig;