Files
mstfyldz/next.config.ts

26 lines
476 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "standalone",
images: {
remotePatterns: [
{
protocol: "https",
hostname: "api.telegram.org",
pathname: "/**",
},
{
protocol: "https",
hostname: "cdn.ayrislegal.com",
pathname: "/**",
},
{
protocol: "https",
hostname: "images.unsplash.com",
},
],
},
};
export default nextConfig;