Files
65bd781c-2f35-4656-b286-90a…/next.config.ts
Nikolay Pecheniev bd3d3af8cf Initial commit
2025-12-26 14:02: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;