Files
06b27daa-e6d8-4afe-bc63-dff…/next.config.ts
2025-12-20 19:06:17 +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;