Files
cbd91ad4-a985-459b-b1fe-bf5…/next.config.ts
2025-12-21 00:19:45 +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;