Files
8b3cbda1-59fd-43c1-8129-8b0…/next.config.ts
Nikolay Pecheniev b840c35fd8 Initial commit
2025-12-26 11:58:33 +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;