Files
8967f459-c193-471c-81cb-a45…/next.config.ts
Nikolay Pecheniev 3383d9c233 Initial commit
2025-12-24 10:41:56 +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;