Files
3ba0f386-6e5b-43f7-a6e7-175…/next.config.ts
Nikolay Pecheniev cc884d57dd Initial commit
2025-12-24 14:11:38 +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;