Files
af568823-d9c4-47ff-9eae-5e7…/next.config.ts
Nikolay Pecheniev 67e500cc00 Initial commit
2025-12-26 16:46:46 +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;