Files
012104ff-ef3e-466c-9bed-a0b…/next.config.ts
Nikolay Pecheniev 16a00e8b01 Initial commit
2025-12-24 12:52:24 +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;