Files
eb1c0740-d52d-4c34-8e55-409…/next.config.ts
Nikolay Pecheniev 26325c6567 Initial commit
2025-12-23 17:33:27 +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;